/ .config / nvim / old.vim
old.vim
 1  let $NVIM_TUI_ENABLE_TRUE_COLOR=1
 2  set encoding=utf8
 3  set t_Co=256
 4  syntax off
 5  
 6  set nocp
 7  filetype plugin indent on
 8  set completeopt=longest,menuone
 9  
10  set mouse=
11  
12  au BufNewFile,BufRead *.html set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
13  au BufNewFile,BufRead *.js set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
14  au BufNewFile,BufRead *.lua set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
15  au BufNewFile,BufRead *.rb set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
16  au BufNewFile,BufRead *.yml set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
17