diff options
-rw-r--r-- | vimrc | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -36,6 +36,7 @@ Plugin 'ctrlpvim/ctrlp.vim' Plugin 'vim-scripts/YankRing.vim' Plugin 'johannst/Clever-Tabs' Plugin 'johannst/AsyncCmdProcessor.vim' +Plugin 'w0rp/ale' call vundle#end() @@ -139,6 +140,17 @@ if s:IsPluginEnabled('johannst/AsyncCmdProcessor.vim') execute "nnoremap <leader>fg :Async find . -type f -exec grep -nHI {} +"repeat('<Left>', 6) endif +if s:IsPluginEnabled('w0rp/ale') + let g:ale_sign_column_always = 1 + let g:ale_sign_error = '>>' + let g:ale_sign_warning = '--' + let g:ale_set_highlights = 1 + "let g:ale_open_list = 1 + let g:ale_change_sign_column_color = 1 + hi link ALESignColumnWithoutErrors LineNr + hi link ALESignColumnWithErrors LineNr +endif + "}}} "{{{ Vim Basic |