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.
7 lines
329 B
VimL
7 lines
329 B
VimL
" 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
|