aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-02-17 21:18:44 -0500
committertdro <tdro@users.noreply.github.com>2022-02-17 21:18:44 -0500
commit996f0e89d12988f50c839d63228b73bb05d4d41d (patch)
tree0003ce9b900a60db5c167218704de08f2aae842f /.vimrc
parentab88eb3c639302cc414c3babe061418ca8117cb3 (diff)
downloaddotfiles-996f0e89d12988f50c839d63228b73bb05d4d41d.tar.gz
dotfiles-996f0e89d12988f50c839d63228b73bb05d4d41d.tar.bz2
dotfiles-996f0e89d12988f50c839d63228b73bb05d4d41d.zip
.vimrc: Reload plugins on reset
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index 4dc561d..7e16f0c 100644
--- a/.vimrc
+++ b/.vimrc
@@ -144,7 +144,7 @@ nmap <leader>qw <C-w>c<cr>
nmap <leader>re gg=G<C-o><C-o>
" Reset all settings and source configuration.
-nmap <leader>ra :set all& \| :source ~/.vimrc \| :e<cr>:Notify('printf "Settings cleared and reloaded."')<cr>
+nmap <leader>ra :set all& \| :source ~/.vimrc \| :packloadall \|:e<cr>:Notify('printf "Settings cleared and reloaded."')<cr>
" Remove duplicate lines
vnoremap <leader>rd !awk '\!visited[$0]++'<cr>