fix: correct condition check for filetype in lualine configuration
This commit is contained in:
@@ -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,
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user