fix: correct condition check for filetype in lualine configuration
This commit is contained in:
@@ -302,7 +302,7 @@ return { -- Lualine
|
|||||||
end,
|
end,
|
||||||
padding = { left = 1, right = 1 },
|
padding = { left = 1, right = 1 },
|
||||||
cond = function()
|
cond = function()
|
||||||
return not vim.bo.filetype == "neovim_updater_term"
|
return vim.bo.filetype ~= "neovim_updater_term"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user