From 6869268ea4e4eb84024f0ff54fd7cf0bce1ebd9a Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 12 Sep 2019 09:25:51 -0400 Subject: [PATCH] ALE stuff --- vim/vimrc | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index f412ea4..63cb0d8 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -80,9 +80,24 @@ nnoremap j nnoremap k nnoremap l +"ALE Keymaps and options +nnoremap a a +nnoremap g :ALEGoToDefinition +nnoremap f :ALEFix + +let g:ale_fixers = { + \ 'python': ['add_blank_lines_for_python_control_statements', 'yapf'] + \ } + "which-key -let g:which_key_map = {} +let g:which_key_map = {} autocmd! User vim-which-key call which_key#register('', 'g:which_key_map') +let g:which_key_map[' '] = { + \ 'name' : '+ale' , + \ 'a' : 'completions' , + \ 'g' : 'go-to-definition' , + \ 'f' : 'fix' , + \ } call which_key#register('', "g:which_key_map") nnoremap :WhichKey '' nnoremap :WhichKey ','