dotfiles/tools/nvim/lua/plugins/mod/winbar-nvim.lua
2025-01-09 15:16:12 +00:00

38 lines
782 B
Lua

return {
{
"fgheng/winbar.nvim",
config = function()
require("winbar").setup({
enabled = true,
show_file_path = true,
show_symbols = true,
colors = {
path = "#9c1d91",
file_name = "",
symbols = "",
},
icons = {
file_icon_default = "",
seperator = ">",
editor_state = "",
lock_icon = "",
},
exclude_filetype = {
"help",
"startify",
"dashboard",
"packer",
"neogitstatus",
"NvimTree",
"Trouble",
"alpha",
"lir",
"Outline",
"spectre_panel",
"toggleterm",
"qf",
},
})
end,
},
}