X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=states%2Fvim%2Ffiles%2Fvimrc;h=e1375129a496c5567848a75cc8cc757524144361;hb=c587afa712c20b1fc26d481eb4fae8d92838dc7a;hp=145fd4f95a829f49154311eba5a53b08cbe68561;hpb=39f1e517ede6aff07a4a2015d2483d0046b65a48;p=max%2Fsaltfiles.git diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index 145fd4f..e137512 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -33,6 +33,9 @@ Plugin 'altercation/vim-colors-solarized' Plugin 'ctrlpvim/ctrlp.vim' Plugin 'Chiel92/vim-autoformat' Plugin 'python-rope/ropevim' +Plugin 'pangloss/vim-javascript' +Plugin 'itspriddle/vim-shellcheck' +Plugin 'vimwiki/vimwiki' " All of your Plugins must be added before the following line call vundle#end() " required @@ -70,6 +73,7 @@ let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_python_python_exec = '/usr/bin/python3' let g:syntastic_python_checkers = ['python', 'flake8'] let g:syntastic_python_flake8_args='--config=/home/max/.config/flake8' +let g:syntastic_sh_checkers = ['shellcheck'] let g:syntastic_aggregate_errors = 1 " Syntastic C++11 @@ -168,3 +172,7 @@ noremap :Autoformat let ropevim_goto_def_newwin = 1 let ropevim_guess_project = 1 + +" Vimwiki +let g:vimwiki_list = [{'path': '~/vimwiki/', 'syntax': 'markdown', 'ext': '.md'}] +let g:vimwiki_global_ext = 0