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.
12 lines
366 B
VimL
12 lines
366 B
VimL
" custom preset with left-justified window list
|
|
" PLUGIN: TMUXLINE
|
|
let g:tmuxline_preset = {
|
|
\'a' : '#S',
|
|
\'b' : '#(whoami)',
|
|
\'c' : '#I:#P',
|
|
\'win' : '#I #W',
|
|
\'cwin' : [' ', '#I #W'],
|
|
\'x' : '#{?client_prefix,#[fg=colour232]#[bg=brightblue],} %H:%M:%S',
|
|
\'y' : '%d-%b-%y',
|
|
\'z' : '#H',
|
|
\'options' : {}}
|