fix: correct condition check for filetype in lualine configuration

This commit is contained in:
2024-09-21 08:02:03 -04:00
parent e3cea1a9f1
commit eafc647526
+1 -1
View File
@@ -302,7 +302,7 @@ return { -- Lualine
end,
padding = { left = 1, right = 1 },
cond = function()
return not vim.bo.filetype == "neovim_updater_term"
return vim.bo.filetype ~= "neovim_updater_term"
end,
},
},