summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorGravatar Robin Obůrka <robin.oburka@nic.cz> 2019-03-11 14:24:02 +0100
committerGravatar Robin Obůrka <robin.oburka@nic.cz> 2019-03-11 14:24:02 +0100
commit2903ae3fd34a15b905b11eb890dcfdfd62b9391c (patch)
tree1e2dab039d2b8d13cdf0f8623ac476eadac832db /.vimrc
parentftplugin: Add flake8 for python (diff)
downloadvim_sync-2903ae3fd34a15b905b11eb890dcfdfd62b9391c.tar.xz
Split ALE settings
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc17
1 files changed, 8 insertions, 9 deletions
diff --git a/.vimrc b/.vimrc
index 7aab60b..8a420f6 100644
--- a/.vimrc
+++ b/.vimrc
@@ -223,16 +223,10 @@ source ~/.vim/hicursorwords.vim
" ============================================================================
" ============
-" ale settings
+" specialities
" ============
-" must be before Vundle installation
-let g:ale_lint_on_text_changed = 'never'
-let g:ale_echo_msg_error_str = 'E'
-let g:ale_echo_msg_warning_str = 'W'
-let g:ale_echo_msg_format = '[%severity%] (%linter%) %s'
-let g:ale_completion_enabled = 1
-nmap <silent> <leader>k <Plug>(ale_previous_wrap)
-nmap <silent> <leader>j <Plug>(ale_next_wrap)
+" must be before Vundle activation
+"let g:ale_completion_enabled = 1
" =================
" Plugin management
@@ -257,6 +251,11 @@ Plugin 'dhruvasagar/vim-table-mode'
call vundle#end()
filetype plugin indent on
+" ============
+" ALE settings
+" ============
+let g:ale_lint_on_text_changed = 'never'
+
" ======================
" vim-gitgutter settings
" ======================