From 6fd93078fafeaf86b620ddb31e67c53f74a7a2a0 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 25 Dec 2024 18:00:48 -0500 Subject: [PATCH] chore: add filetypes to ignore list --- .config/nvim/lua/plugins/lualine.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua index bb5928a..7d48256 100644 --- a/.config/nvim/lua/plugins/lualine.lua +++ b/.config/nvim/lua/plugins/lualine.lua @@ -98,8 +98,8 @@ return { component_separators = { left = '', right = '' }, -- old separators:    section_separators = { left = '', right = '' }, -- old separators:   disabled_filetypes = { - statusline = { 'alpha', 'dashboard', 'Outline', 'NvimTree' }, - winbar = { 'alpha', 'dashboard', 'Outline', 'NvimTree' }, + statusline = { 'alpha', 'dashboard', 'Outline', 'NvimTree', 'undotree', 'diff' }, + winbar = { 'alpha', 'dashboard', 'Outline', 'NvimTree', 'undotree', 'diff' }, }, ignore_focus = {}, always_divide_middle = true, @@ -293,4 +293,4 @@ return { extensions = { 'nvim-tree', 'lazy', 'trouble', 'quickfix', 'fzf', 'mason', 'fugitive', 'oil' }, }) end, -} \ No newline at end of file +}