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:
parent
6b79eeef5d
commit
756e45e037
29 changed files with 305 additions and 274 deletions
7
nvim/.config/nvim/plugin/airline.vim
Normal file
7
nvim/.config/nvim/plugin/airline.vim
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue