vim: add <leader>ef,ec,es to open config files

<leader>ef edits $DOTFILES/vim/functions.vim
<leader>ec edits $DOTFILES/vim/plugins_config.vim
<leader>es edits $DOTFILES/vim/shortcuts.vim
feature/improve-speed
bretello 2021-03-14 15:50:16 +01:00
parent 88c26c90d1
commit d88b203b73
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 4 additions and 1 deletions

View File

@ -11,7 +11,10 @@ command! W execute 'w !sudo tee % > /dev/null' <bar> edit!
"Reload vimrc on config change
map <leader>e :e! ~/.vimrc<CR>
" FIXME: This results in some weird conflict with lightline
map <leader>ef :e! $DOTFILES/vim/functions.vim<CR>
map <leader>ec :e! $DOTFILES/vim/plugins_config.vim<CR>
map <leader>es :e! $DOTFILES/vim/shortcuts.vim<CR>
autocmd! bufwritepost ~/.vimrc source ~/.vimrc
autocmd! bufwritepost $DOTFILES/vim/* source ~/.vimrc