| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | set iskeyword+=-                      	" treat dash separated words as a word text object"set formatoptions-=cro                  " Stop newline continution of commentssyntax enable                           " Enables syntax highlighingset hidden                              " Required to keep multiple buffers open multiple buffersset nowrap                              " Display long lines as just one lineset whichwrap+=<,>,[,],h,lset encoding=utf-8                      " The encoding displayedset pumheight=10                        " Makes popup menu smallerset fileencoding=utf-8                  " The encoding written to fileset ruler              			            " Show the cursor position all the timeset cmdheight=2                         " More space for displaying messagesset mouse=a                             " Enable your mouseset splitbelow                          " Horizontal splits will automatically be belowset splitright                          " Vertical splits will automatically be to the rightset t_Co=256                            " Support 256 colorsset conceallevel=0                      " So that I can see `` in markdown filesset tabstop=2                           " Insert 2 spaces for a tabset shiftwidth=2                        " Change the number of space characters inserted for indentationset smarttab                            " Makes tabbing smarter will realize you have 2 vs 4set expandtab                           " Converts tabs to spacesset smartindent                         " Makes indenting smartset autoindent                          " Good auto indentset laststatus=2                        " Always display the status lineset number                              " Line numbersset cursorline                          " Enable highlighting of the current lineset background=dark                     " tell vim what the background color looks likeset showtabline=2                       " Always show tabsset noshowmode                          " We don't need to see things like -- INSERT -- anymoreset nobackup                            " This is recommended by cocset nowritebackup                       " This is recommended by cocset shortmess+=c                        " Don't pass messages to |ins-completion-menu|.set signcolumn=yes                      " Always show the signcolumn, otherwise it would shift the text each timeset updatetime=300                      " Faster completionset timeoutlen=100                      " By default timeoutlen is 1000 msset clipboard=unnamedplus               " Copy paste between vim and everything elseset incsearchset guifont=JetBrainsMono\ Nerd\ Font\ Mono:h18" New stuff" set notimeout nottimeout" set scrolloff=1" set sidescroll=1" set sidescrolloff=1" set display+=lastline" set backspace=eol,start,indent" set nostartofline" let $NVIM_TUI_ENABLE_TRUE_COLOR=1" set mmp=1300" set autochdir                           " Your working directory will always be the same as your working directory" set foldcolumn=2                        " Folding abilities" au! BufWritePost $MYVIMRC source %      " auto source when writing to init.vm alternatively you can run :source $MYVIMRCautocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o" You can't stop mecmap w!! w !sudo tee %
 |