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 ','