1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-12-22 17:28:01 +00:00

[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

View File

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