| 1234567891011121314151617181920212223242526272829303132 | vim.cmd('set iskeyword+=-') -- treat dash separated words as a word text object"vim.cmd('set shortmess+=c') -- Don't pass messages to |ins-completion-menu|.vim.o.hidden = true -- Required to keep multiple buffers open multiple buffersvim.wo.wrap = false -- Display long lines as just one linevim.cmd('set whichwrap+=<,>,[,],h,l') -- move to next line with theses keysvim.cmd('syntax on') -- move to next line with theses keysvim.o.pumheight = 10 -- Makes popup menu smallervim.o.fileencoding = "utf-8" -- The encoding written to filevim.o.cmdheight = 2 -- More space for displaying messagesvim.cmd('set colorcolumn=99999') -- fix indentline for nowvim.o.mouse = "a" -- Enable your mousevim.o.splitbelow = true -- Horizontal splits will automatically be belowvim.o.termguicolors = true -- set term giu colors most terminals support thisvim.o.splitright = true -- Vertical splits will automatically be to the rightvim.o.t_Co = "256" -- Support 256 colorsvim.o.conceallevel = 0 -- So that I can see `` in markdown filesvim.cmd('set ts=4') -- Insert 2 spaces for a tabvim.cmd('set sw=4') -- Change the number of space characters inserted for indentationvim.bo.expandtab = true -- Converts tabs to spacesvim.bo.smartindent = true -- Makes indenting smartvim.wo.number = true -- set numbered linesvim.wo.relativenumber = O.relative_number -- set relative numbervim.wo.cursorline = true -- Enable highlighting of the current linevim.o.showtabline = 2 -- Always show tabsvim.o.showmode = false -- We don't need to see things like -- INSERT -- anymorevim.o.backup = false -- This is recommended by cocvim.o.writebackup = false -- This is recommended by cocvim.wo.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each timevim.o.updatetime = 300 -- Faster completionvim.o.timeoutlen = 100 -- By default timeoutlen is 1000 msvim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything elsevim.o.guifont = "JetBrainsMono\\ Nerd\\ Font\\ Mono:h18"
 |