Reorganize vim plugin settings

Setting everything during PlugLoad function caused some plugins to
misbehave. Plugins are now loaded by Plug and their settings can be
either set with a file in the plugin directory (this mimicks the old way
of setting plugin up during load) or in after/ directory, which sets
options *after* everything has loaded.
This commit is contained in:
Marty Oehme 2020-02-03 22:16:23 +01:00
parent 6b79eeef5d
commit 756e45e037
29 changed files with 305 additions and 274 deletions

View file

@ -0,0 +1,7 @@
" Design
" PLUGIN: AIRLINE
let g:airline_powerline_fonts=1
" disable automatically refreshing the mux statusbar since it breaks tmux
" prefix highlighting. Instead, when changing vim statusbar just create
" snapshot with :TmuxlineSnapshot file and stick it into tmux config manually
let g:airline#extensions#tmuxline#enabled = 1