Skip to content

Commit

Permalink
Vim: Remove on-demand loading
Browse files Browse the repository at this point in the history
Startup times for affected plugins are negligible.

Can toggle quick-scope if it's annoying. Enabling it with on-demand
required running `:QuickScopeToggle` twice.
  • Loading branch information
polyzen committed Oct 9, 2020
1 parent 6151c15 commit 36eb993
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/.vim/vimrc
Expand Up @@ -75,7 +75,7 @@ let g:fern#renderer = 'nerdfont'

Plug 'tpope/vim-fugitive' | Plug 'junegunn/gv.vim'
Plug 'shumphrey/fugitive-gitlab.vim' | Plug 'tpope/vim-rhubarb'
Plug 'rhysd/git-messenger.vim', { 'on': 'GitMessenger' }
Plug 'rhysd/git-messenger.vim'
Plug 'airblade/vim-gitgutter'
let g:gitgutter_preview_win_floating = 1

Expand All @@ -102,10 +102,10 @@ Plug 'lambdalisue/nerdfont.vim'
Plug 'junegunn/vim-peekaboo'
Plug 'blueyed/vim-qf_resize'
Plug 'itchyny/vim-qfedit'
Plug 'unblevable/quick-scope', { 'on': 'QuickScopeToggle' }
Plug 'unblevable/quick-scope'
Plug 'AndrewRadev/quickpeek.vim'
Plug 'tpope/vim-repeat'
Plug 'rhysd/reply.vim', { 'on': ['Repl', 'ReplAuto'] }
Plug 'rhysd/reply.vim'
Plug 'tpope/vim-rsi'
Plug 'matthew-brett/vim-rst-sections'
Plug 'arzg/vim-rust-syntax-ext'
Expand All @@ -114,7 +114,7 @@ Plug 'psliwka/vim-smoothie'
Plug 'justinmk/vim-sneak'
Plug 'AndrewRadev/splitjoin.vim'
Plug 'aymericbeaumet/vim-symlink'
Plug 'dhruvasagar/vim-table-mode', { 'on': 'TableModeToggle' }
Plug 'dhruvasagar/vim-table-mode'
Plug 'tmux-plugins/vim-tmux-focus-events'
Plug 'cespare/vim-toml'
Plug 'markonm/traces.vim'
Expand Down

0 comments on commit 36eb993

Please sign in to comment.