From df7f3914cd8c36b48923d9e5837660cbd1cc4295 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Sat, 28 Dec 2024 12:10:42 -0800 Subject: [PATCH] feat: add nushell language support --- flake.nix | 1 + lua/lsp/init.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index b71695f..920de6b 100644 --- a/flake.nix +++ b/flake.nix @@ -125,6 +125,7 @@ gitcommit jsonc meson + nu ]) )) # for some reason trigger_load still fails to load this in the diff --git a/lua/lsp/init.lua b/lua/lsp/init.lua index 3a3681b..6d51ff8 100644 --- a/lua/lsp/init.lua +++ b/lua/lsp/init.lua @@ -65,6 +65,7 @@ M.setup = function() lspconfig.texlab.setup({}) lspconfig.clangd.setup({}) lspconfig.mesonlsp.setup({}) + lspconfig.nushell.setup({}) end return M