From b492a75485f9116bf0a17ed12e7b77f86dad4024 Mon Sep 17 00:00:00 2001 From: liv Date: Fri, 1 Mar 2024 10:55:33 +0100 Subject: [PATCH] add nushell plugin --- dot_config/nvim/lua/plugins/nushell.lua | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 dot_config/nvim/lua/plugins/nushell.lua diff --git a/dot_config/nvim/lua/plugins/nushell.lua b/dot_config/nvim/lua/plugins/nushell.lua new file mode 100644 index 0000000..c46345f --- /dev/null +++ b/dot_config/nvim/lua/plugins/nushell.lua @@ -0,0 +1,30 @@ +return { + { + "neovim/nvim-lspconfig", + opts = { + servers = { + nushell = {}, + }, + }, + }, + { + "nvim-treesitter/nvim-treesitter", + dependencies = { + { "nushell/tree-sitter-nu" }, + }, + opts = function(_, opts) + require("nvim-treesitter.parsers").get_parser_configs().nu = { + install_info = { + url = "https://github.com/nushell/tree-sitter-nu", + files = { "src/parser.c" }, + branch = "main", + }, + filetype = "nu", + } + + if type(opts.ensure_installed) == "table" then + vim.list_extend(opts.ensure_installed, { "nu" }) + end + end, + }, +}