feat(lualine): added lazy extension

This commit is contained in:
Folke Lemaitre
2023-03-31 13:04:43 +02:00
parent a6062758d2
commit 79fe0455a0

View File

@ -83,7 +83,7 @@ return {
{ {
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = function(plugin) opts = function()
local icons = require("lazyvim.config").icons local icons = require("lazyvim.config").icons
local function fg(name) local function fg(name)
@ -98,7 +98,7 @@ return {
options = { options = {
theme = "auto", theme = "auto",
globalstatus = true, globalstatus = true,
disabled_filetypes = { statusline = { "dashboard", "lazy", "alpha" } }, disabled_filetypes = { statusline = { "dashboard", "alpha" } },
}, },
sections = { sections = {
lualine_a = { "mode" }, lualine_a = { "mode" },
@ -154,7 +154,7 @@ return {
end, end,
}, },
}, },
extensions = { "neo-tree" }, extensions = { "neo-tree", "lazy" },
} }
end, end,
}, },