dotconf/.config/nvim/old.vim
Aaron Bieber 321dd1502e Switch some stuff neovim stuff to a lua script
Still haven't figured out a grip of other things though..
2021-08-08 08:12:30 -06:00

16 lines
585 B
VimL

let $NVIM_TUI_ENABLE_TRUE_COLOR=1
set encoding=utf8
set t_Co=256
syntax off
set nocp
filetype plugin indent on
set completeopt=longest,menuone
au BufNewFile,BufRead *.html set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
au BufNewFile,BufRead *.js set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
au BufNewFile,BufRead *.lua set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
au BufNewFile,BufRead *.rb set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab
au BufNewFile,BufRead *.yml set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab