dotfiles/tools/nvim/lua/plugins/mod/winbar-nvim.lua
js0ny a506ee28ad feats: nvim, emacs, shell
* nvim: Add copilot completions
* nvim: grug-far buffer won't show lualine & winbar now
* nvim: remove obsidian.nvim
* nvim: luasnip now works
* emacs: more keymaps in org-mode
* emacs: start customizing leader keys
* shell: Add more ls aliases
* shell: Add apt alias in fish
2025-02-10 22:37:58 +00:00

41 lines
841 B
Lua

return {
{
"fgheng/winbar.nvim",
config = function()
require("winbar").setup({
enabled = true,
show_file_path = true,
show_symbols = true,
colors = {
path = "",
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",
"floaterm",
"orgagenda",
"grug-far"
},
})
end,
},
}