2026-03-01 18:53:20 +01:00
|
|
|
return {
|
2026-03-02 11:42:46 +01:00
|
|
|
{
|
|
|
|
|
"nvim-tree/nvim-tree.lua",
|
|
|
|
|
version = "*",
|
|
|
|
|
lazy = false,
|
|
|
|
|
dependencies = {
|
|
|
|
|
"nvim-tree/nvim-web-devicons",
|
|
|
|
|
},
|
|
|
|
|
opts = {},
|
|
|
|
|
},
|
2026-03-01 18:53:20 +01:00
|
|
|
{
|
|
|
|
|
"nvim-lualine/lualine.nvim",
|
|
|
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
|
|
|
config = function()
|
|
|
|
|
require("lualine").setup({
|
2026-03-17 20:43:35 +01:00
|
|
|
theme = "base16",
|
2026-03-01 18:53:20 +01:00
|
|
|
options = {
|
|
|
|
|
component_separators = { left = "", right = "" },
|
|
|
|
|
section_separators = { left = "", right = "" },
|
|
|
|
|
},
|
|
|
|
|
sections = {
|
|
|
|
|
lualine_a = { "mode" },
|
|
|
|
|
lualine_b = { "diagnostics" },
|
|
|
|
|
lualine_c = { "filename", "branch", "navic" },
|
|
|
|
|
lualine_x = { "lsp_status", "filetype" },
|
|
|
|
|
lualine_y = { "progress" },
|
|
|
|
|
lualine_z = { "location" },
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
"nvimdev/lspsaga.nvim",
|
|
|
|
|
dependencies = {
|
|
|
|
|
"nvim-treesitter/nvim-treesitter", -- for syntax highlighting inside the popup
|
|
|
|
|
"nvim-tree/nvim-web-devicons", -- for pretty icons
|
|
|
|
|
},
|
|
|
|
|
opts = {
|
|
|
|
|
ui = {
|
|
|
|
|
border = "rounded",
|
|
|
|
|
},
|
|
|
|
|
symbol_in_winbar = { enable = true },
|
2026-03-17 20:43:35 +01:00
|
|
|
lightbulb = {
|
|
|
|
|
enable = true,
|
|
|
|
|
sign = false,
|
|
|
|
|
},
|
2026-03-01 18:53:20 +01:00
|
|
|
hover = {
|
|
|
|
|
max_width = 0.6,
|
|
|
|
|
open_link = "gx",
|
|
|
|
|
open_browser = "!google-chrome",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"akinsho/bufferline.nvim",
|
|
|
|
|
opts = {},
|
|
|
|
|
},
|
|
|
|
|
}
|