diff options
Diffstat (limited to 'init.vim')
| -rw-r--r-- | init.vim | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -33,5 +33,23 @@ set guifont=ProFont\ 11 " endif - " let g:hardtime_default_on = 1 + + +" For syntastic it's worth running +" SyntasticInfo : to see what's available for the given open file +" SyntasticCheck yamllint : if you want to say manually run the `yamllint` +" checker + +let g:syntastic_yaml_checkers = ['yamllint'] + +" This lets :lopen / :lwindow always be populated work +let g:syntastic_always_populate_loc_list = 1 + + +" some info on the Tabular plugin: +" http://vimcasts.org/episodes/aligning-text-with-tabular-vim/ + + +" Commenting in and out blocks can be done with `gc` +" https://github.com/tpope/vim-commentary |
