### Setup Winbar.nvim Source: https://github.com/fgheng/winbar.nvim/blob/main/README.md This snippet demonstrates the basic setup for the Winbar.nvim plugin, enabling its core functionality. ```lua require('winbar').setup() ``` -------------------------------- ### Install Winbar.nvim with Packer Source: https://github.com/fgheng/winbar.nvim/blob/main/README.md This snippet shows how to add the Winbar.nvim plugin to your Neovim configuration using the Packer plugin manager. ```lua use { 'fgheng/winbar.nvim' } ``` -------------------------------- ### Configure Winbar.nvim Source: https://github.com/fgheng/winbar.nvim/blob/main/README.md This snippet provides a detailed configuration example for Winbar.nvim, allowing customization of enabled features, file path display, symbol visibility, colors, icons, and excluded filetypes. ```lua 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', } }) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.