[neovim] Don't show file info in lualine when current buffer is neo-tree

This commit is contained in:
Daniel Carrillo 2023-10-07 18:34:59 +02:00
parent 559db5cc5a
commit 81825f2610
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 12 additions and 2 deletions

View File

@ -80,7 +80,17 @@ require("lualine").setup({
lualine_b = { "branch", venv },
lualine_c = {
diagnostics,
{ "filename", path = 1 },
{
"filename",
path = 1,
cond = function()
if vim.bo.filetype == "neo-tree" then
return false
end
return true
end
},
lsp_progress,
{
require("noice").api.status.search.get,
@ -94,7 +104,7 @@ require("lualine").setup({
spaces,
"encoding",
filetype,
{ get_schema, separator = "" },
{ get_schema, separator = "" },
},
lualine_y = { "progress" },
lualine_z = { "location" },