| 1234567891011121314151617181920212223242526272829 | 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')vim.o.pumheight=10                        --Makes popup menu smallervim.o.fileencoding="utf-8"                  --The encoding written to filevim.o.cmdheight=2                         --More space for displaying messagesvim.o.mouse="a"                             --Enable your mousevim.o.splitbelow=true                          --Horizontal splits will automatically be belowvim.o.termguicolors=truevim.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 = truevim.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"
 |