From 4e3edc7832f8474c52c179a8173f28dc9581129d Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 18 Oct 2025 12:58:43 +0200 Subject: [PATCH] nvim: Remove manual nushell tresitter installation It is no longer necessary to manually install the nushell tresitter as a lazy plugin spec, according to: https://github.com/nushell/tree-sitter-nu/blob/main/installation/neovim.md Instead we just enable the treesitter 'nu' language in the `languages.lua` file as usual and it works out of the box. --- nvim/.config/nvim/lua/modules/treesitter.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/nvim/.config/nvim/lua/modules/treesitter.lua b/nvim/.config/nvim/lua/modules/treesitter.lua index de2cb9e..02c9921 100644 --- a/nvim/.config/nvim/lua/modules/treesitter.lua +++ b/nvim/.config/nvim/lua/modules/treesitter.lua @@ -20,7 +20,6 @@ return { require("rainbow-delimiters.setup").setup({}) end, }, - { "nushell/tree-sitter-nu", version = false }, }, config = function() local enabled_parsers = {}