diff options
| -rw-r--r-- | README.md | 16 | ||||
| -rw-r--r-- | init.vim | 1 |
2 files changed, 2 insertions, 15 deletions
@@ -1,6 +1,5 @@ # vim-cfg - Personal Vimrc + other addons No doubt there are likely other ways of keeping your vim configuration and @@ -8,23 +7,10 @@ all addons in source control, either way this is what I'm using. # How to use this: -Run the following commands, be sure to _understand_ them first. ``` bash cd $HOME -git clone https://git.riedstra.us/mitch/vim-cfg .vim +git clone --recurse-submodules https://git.riedstra.us/mitch/vim-cfg.git .vim cd $HOME/.vim -./setup.sh ./link-vimrc.sh ``` - - -Once those commands complete you'll have installed my configuration. - - -# Using this for yourself. - -It's pretty simple, if you add repositories anywhere in `$HOME/.vim` then -just run `./gen-setup.sh` and it'll take care of making a new `./setup.sh` -for you. Commit this and push it wherever. - @@ -42,6 +42,7 @@ set guifont=ProFont\ 11 " checker let g:syntastic_yaml_checkers = ['yamllint'] +let g:syntastic_go_checkers = [ 'go', 'gofmt', 'golangci_lint' ] " This lets :lopen / :lwindow always be populated work let g:syntastic_always_populate_loc_list = 1 |
