diff options
Diffstat (limited to 'lua/plugins/winbar.lua')
| -rw-r--r-- | lua/plugins/winbar.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lua/plugins/winbar.lua b/lua/plugins/winbar.lua new file mode 100644 index 0000000..1573828 --- /dev/null +++ b/lua/plugins/winbar.lua @@ -0,0 +1,35 @@ +require("winbar").setup({ + enabled = true, + + show_file_path = true, + show_symbols = true, + + colors = { + path = "", -- You can customize colors like #c946fd + 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", + }, +}) |
