vim: use <leader>ep to open plugs.vim

feature/improve-speed
bretello 2021-03-15 10:30:39 +01:00
parent c5edf934ef
commit 681acc90e6
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 2 additions and 0 deletions

View File

@ -14,9 +14,11 @@ map <leader>e :e! ~/.vimrc<CR>
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>
map <leader>ep :e! $DOTFILES/vim/plugs.vim<CR>
autocmd! bufwritepost ~/.vimrc source ~/.vimrc
autocmd! bufwritepost $DOTFILES/vim/* source ~/.vimrc
autocmd! bufwritepost $DOTFILES/vim/plugs.vim PlugInstall
" Quickly open a markdown buffer for scribble
map <leader>x :e ~/buffer.md<CR>