From 79fe0455a02b791eae26e9934fdbaf075d9522ae Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 31 Mar 2023 13:04:43 +0200 Subject: [PATCH] feat(lualine): added lazy extension --- lua/lazyvim/plugins/ui.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index b664569c..2c43cc0c 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -83,7 +83,7 @@ return { { "nvim-lualine/lualine.nvim", event = "VeryLazy", - opts = function(plugin) + opts = function() local icons = require("lazyvim.config").icons local function fg(name) @@ -98,7 +98,7 @@ return { options = { theme = "auto", globalstatus = true, - disabled_filetypes = { statusline = { "dashboard", "lazy", "alpha" } }, + disabled_filetypes = { statusline = { "dashboard", "alpha" } }, }, sections = { lualine_a = { "mode" }, @@ -154,7 +154,7 @@ return { end, }, }, - extensions = { "neo-tree" }, + extensions = { "neo-tree", "lazy" }, } end, },