Add vim-nix

This commit is contained in:
Dave Gallant
2020-06-03 16:31:11 -04:00
parent 573b38bd4b
commit da832b498c

View File

@@ -11,6 +11,7 @@ set rtp+=~/.vim/bundle/Vundle.vim
" Plugins " Plugins
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'LnL7/vim-nix'
Plug 'ap/vim-css-color' Plug 'ap/vim-css-color'
Plug 'fatih/vim-go' Plug 'fatih/vim-go'
Plug 'hashivim/vim-terraform' Plug 'hashivim/vim-terraform'
@@ -73,6 +74,7 @@ set wildmenu
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
set expandtab
" Enable folding " Enable folding
set foldmethod=indent set foldmethod=indent
@@ -122,6 +124,7 @@ highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/ match ExtraWhitespace /\s\+$/
" groovy syntax " groovy syntax
au BufNewFile,BufRead *.groovy set tabstop=2 shiftwidth=2 expandtab
au BufNewFile,BufRead Jenkinsfile setf groovy au BufNewFile,BufRead Jenkinsfile setf groovy
au BufNewFile,BufRead Jenkinsfile set tabstop=2 shiftwidth=2 expandtab au BufNewFile,BufRead Jenkinsfile set tabstop=2 shiftwidth=2 expandtab