nvim/lua/plugs/winbar.lua

41 lines
730 B
Lua

return {
{
'fgheng/winbar.nvim',
config = function()
require('winbar').setup({
enabled = true,
show_symbols = true,
colors = {
path = '#aaffff',
file_name = '#bbbbff',
symbols = '#aaffaa',
},
icons = {
separator = '>',
editor_state = '',
lock_icon = '',
},
exclude_filetype = {
'help',
'startify',
'dashboard',
'packer',
'neogitstatus',
'NvimTree',
'Trouble',
'alpha',
'lir',
'Outline',
'spectre_panel',
'toggleterm',
'qf',
}
})
end
},
}