Attempt to fix nushell config

This commit is contained in:
2026-01-13 14:00:06 +00:00
parent df84fe6b39
commit 7b4442a9c8
2 changed files with 11 additions and 4 deletions

10
lua/plugins/lang/nu.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
require("lspconfig").nushell.setup({
cmd = {
"nu",
"--config",
vim.env.XDG_CONFIG_HOME .. "/nushell/lsp.nu",
"--lsp",
},
}),
}