neovim(lualine): Don't show for nvim-tree

This commit is contained in:
Donovan Glover 2023-07-11 07:58:33 -04:00
parent 1a8bedafb3
commit bad9f4cbf7
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -257,7 +257,10 @@ in
theme.inactive.c.bg = nil
require('lualine').setup {
options = { theme = theme },
options = {
theme = theme,
disabled_filetypes = {'NvimTree'}
},
sections = { lualine_c = {'%f'} }
}
'';