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/symbol-search
bretello 2021-03-14 15:50:16 +01:00
parent 201f272aa4
commit 1573e41df9
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