Add some Vim configuration for Jenkinsfiles

This commit is contained in:
Salt 2022-01-22 15:19:20 -06:00
parent 92b2a7dd3f
commit fbc2f92c9d
3 changed files with 6 additions and 0 deletions

3
.gitmodules vendored
View File

@ -46,3 +46,6 @@
[submodule "base/.vim/bundle/vim-terraform"]
path = base/.vim/bundle/vim-terraform
url = https://github.com/hashivim/vim-terraform
[submodule "base/.vim/bundle/vim-groovy"]
path = base/.vim/bundle/vim-groovy
url = https://github.com/thecodesmith/vim-groovy

@ -0,0 +1 @@
Subproject commit f9d16d5347b612386a8be38064a1b30bcf8938df

View File

@ -52,6 +52,8 @@ let g:lightline = {
\}
let g:lightline.colorscheme = 'gruvbox'
" Jenkinsfile
au BufNewFile,BufRead Jenkinsfile setf groovy
" Json
au BufNewFile,BufRead *.json
\ set tabstop=2 |