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

feature/symbol-search
bretello 2021-03-15 10:30:39 +01:00
parent 74e8f0b33c
commit 0a1f93248f
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>