From 3cba3ca30c167d484dbf85f25685ed6cf4f87014 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 30 Sep 2024 01:10:33 +0300 Subject: [PATCH] statusline/lualine: disable LSP indicator on neo-tree --- modules/plugins/statusline/lualine/lualine.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugins/statusline/lualine/lualine.nix b/modules/plugins/statusline/lualine/lualine.nix index 51357941..20b78af9 100644 --- a/modules/plugins/statusline/lualine/lualine.nix +++ b/modules/plugins/statusline/lualine/lualine.nix @@ -224,7 +224,7 @@ in { local buf_ft = vim.api.nvim_get_option_value('filetype', {}) -- List of buffer types to exclude - local excluded_buf_ft = {"toggleterm", "NvimTree", "TelescopePrompt"} + local excluded_buf_ft = {"toggleterm", "NvimTree", "neo-tree", "TelescopePrompt"} -- Check if the current buffer type is in the excluded list for _, excluded_type in ipairs(excluded_buf_ft) do