-- -- This file adds local changes to the corresponding file and plugins in LazyVim -- local icons = require("lazyvim.config").icons return { -- https://www.lazyvim.org/plugins/ui -- This is what powers LazyVim's fancy-looking -- tabs, which include filetype icons and close buttons. --{ -- https://github.com/akinsho/bufferline.nvim -- "akinsho/bufferline.nvim", --}, { -- https://github.com/nvim-lualine/lualine.nvim "nvim-lualine/lualine.nvim", opts = { options = { section_separators = "", component_separators = "", }, extensions = { "lazy", "man", "neo-tree", "trouble" }, sections = { lualine_a = { { "mode", icon = "", }, }, lualine_b = { { "filetype", icon_only = true, separator = "", padding = { left = 1, right = 0 } }, { require("lazyvim.util").lualine.pretty_path() }, }, lualine_c = { { function() ---@diagnostic disable-next-line: undefined-field local branch = vim.b.gitsigns_head return branch and ((vim.o.columns > 100) and (" " .. branch) or "") or "" end, padding = { left = 1, right = 0 }, }, { "diff", symbols = { added = "+", modified = "~", removed = "-", }, source = function() ---@diagnostic disable-next-line: undefined-field local gitsigns = vim.b.gitsigns_status_dict if gitsigns then return { added = gitsigns.added, modified = gitsigns.changed, removed = gitsigns.removed, } end end, padding = 1, }, }, lualine_x = { { "diagnostics", symbols = { error = icons.diagnostics.Error, warn = icons.diagnostics.Warn, info = icons.diagnostics.Info, hint = icons.diagnostics.Hint, }, }, { require("lazy.status").updates, cond = require("lazy.status").has_updates, color = { fg = "#fe8019" }, }, }, lualine_y = { { function() for _, client in ipairs(vim.lsp.get_clients()) do if client.attached_buffers and client.name then return " LSP" .. ((vim.o.columns > 100) and (" ~ " .. client.name) or "") end end end, cond = function() return (vim.fn.has("nvim-0.10") == 1 and rawget(vim, "lsp") and next(vim.lsp.get_clients()) ~= nil) end, color = { fg = "#019863" }, padding = 1, }, }, lualine_z = { { "location", padding = { left = 1, right = 0 } }, { "progress", padding = 1 }, }, }, }, }, -- Highly experimental plugin that completely replaces the UI for messages, cmdline and the popupmenu. { "folke/noice.nvim", enabled = false, }, -- icons --{ -- https://github.com/echasnovski/mini.icons -- "echasnovski/mini.icons", --} -- ui components --{ -- https://github.com/MunifTanjim/nui.nvim -- "MunifTanjim/nui.nvim" --}, { -- https://github.com/folke/snacks.nvim "folke/snacks.nvim", opts = { animate = { duration = 1, }, dashboard = { enabled = false }, indent = { indent = { enabled = true, char = '⎸', -- default: "│" }, animate = { enabled = false }, scope = { enabled = true, char = '⎸', -- default: "│" }, }, lazygit = { enabled = false }, notifier = { enabled = true, timeout = 10000, }, scroll = { enabled = true, animate = { duration = { step = 5, total = 50 } }, }, statuscolumn = { enabled = false, }, terminal = { enabled = false }, styles = { notification_history = { --position = "bottom", border = "rounded", zindex = 100, width = 0.9, height = 0.6, --split = "left", minimal = true, title = " Notification History ", title_pos = "center", ft = "markdown", bo = { filetype = "snacks_notif_history", modifiable = false, }, wo = { winhighlight = "Normal:SnacksNotifierHistory", number = true, relativenumber = false, }, keys = { q = "close" }, }, }, }, }, { -- https://github.com/ellisonleao/gruvbox.nvim "ellisonleao/gruvbox.nvim", opts = { overrides = { SnacksIndent = { fg = "#282828" }, SnacksIndentScope = { fg = "#4C164F" }, SnacksIndentChunk = { fg = "#4C164F" }, }, }, }, -- Statuscolumn { -- https://github.com/luukvbaal/statuscol.nvim "luukvbaal/statuscol.nvim", event = "VeryLazy", enabled = vim.g.statuscol, opts = function() local builtin = require("statuscol.builtin") return { bt_ignore = { "nofile", "terminal" }, segments = { { -- show foldcolumn text = { builtin.foldfunc }, click = "v:lua.ScFa", }, { -- signcolumn sign = { namespace = { ".*" }, auto = true, foldclosed = true, }, click = "v:lua.ScSa", }, { -- linecolumn text = { builtin.lnumfunc, " " }, condition = { true, builtin.not_empty }, click = "v:lua.ScLa", }, { -- signcolumn for gitsigns sign = { namespace = { "gitsigns" }, colwidth = 1, fillchar = " ", wrap = true, auto = true, foldclosed = true, }, click = "v:lua.ScSa", }, }, } end, }, }