From 41d0c6b39052c50127260d5c708fd5e440e856aa Mon Sep 17 00:00:00 2001 From: David Jensenius Date: Thu, 26 Feb 2026 16:47:23 -0500 Subject: [PATCH 1/2] fix: remove duplicate golangci-lint from nvim-lint go.nvim already runs golangci-lint via its linter config. Having nvim-lint also trigger it caused 'parallel golangci-lint is running' errors since golangci-lint doesn't support concurrent execution. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- nvim/lua/plugins/nvim-lint.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/nvim/lua/plugins/nvim-lint.lua b/nvim/lua/plugins/nvim-lint.lua index 919d1e3..4848b5e 100644 --- a/nvim/lua/plugins/nvim-lint.lua +++ b/nvim/lua/plugins/nvim-lint.lua @@ -9,7 +9,6 @@ return { lint.linters_by_ft = { fish = { "fish" }, - go = { "golangcilint" }, python = { "pylint" }, javascript = { "eslint_d" }, javascriptreact = { "eslint_d" }, From 53eea798f1f734d16b0de3781fea5ead39ba1b99 Mon Sep 17 00:00:00 2001 From: David Jensenius Date: Fri, 27 Feb 2026 20:56:44 -0500 Subject: [PATCH 2/2] feat: extend neo-tree keybindings - Add ,tG for git status view - Add ,tS for document symbols view - Move buffers from ,tb to ,tB - Move toggle from ,tg to ,tT Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- nvim/lua/plugins/neo-tree.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/neo-tree.lua b/nvim/lua/plugins/neo-tree.lua index b9be784..b4e26e7 100644 --- a/nvim/lua/plugins/neo-tree.lua +++ b/nvim/lua/plugins/neo-tree.lua @@ -7,9 +7,11 @@ return { }, event = "VeryLazy", keys = { - { "tg", ":Neotree toggle", desc = "Toggle Neo-tree" }, + { "tT", ":Neotree toggle", desc = "Toggle Neo-tree" }, { "tF", ":Neotree filesystem reveal left", desc = "Reveal File in Neo-tree" }, - { "tb", ":Neotree buffers reveal float", desc = "Neo-tree Buffers" }, + { "tB", ":Neotree buffers reveal float", desc = "Neo-tree Buffers" }, + { "tG", ":Neotree git_status reveal float", desc = "Neo-tree Git Status" }, + { "tS", ":Neotree document_symbols reveal float", desc = "Neo-tree Symbols" }, }, config = function() require("neo-tree").setup({