diff --git a/.config/nvim/lua/plugins/alpha.lua b/.config/nvim/lua/plugins/alpha.lua index f3d4a95..1079459 100644 --- a/.config/nvim/lua/plugins/alpha.lua +++ b/.config/nvim/lua/plugins/alpha.lua @@ -30,11 +30,6 @@ return { dashboard.button("q", " > Quit NVIM", "qa"), } - local handle = io.popen "fortune" - local fortune = handle:read "*a" - handle:close() - dashboard.section.footer.val = fortune - -- Send config to alpha alpha.setup(dashboard.opts) -- Disable folding on alpha buffer diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua index 7e04648..a6383de 100644 --- a/.config/nvim/lua/plugins/lualine.lua +++ b/.config/nvim/lua/plugins/lualine.lua @@ -15,7 +15,7 @@ return { component_separators = { left = "", right = "" }, section_separators = { left = "", right = "" }, disabled_filetypes = { - statusline = {}, + statusline = { "alpha", "dashboard" }, winbar = {}, }, ignore_focus = { "NvimTree" },