summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-01-01 14:17:09 +0100
committerLinnnus <[email protected]>2024-01-21 15:57:38 +0100
commite4f85fcea6830dd31db185706b082b17a65ba9be (patch)
tree4dae8a14f78e98fd505d02044eb2822f6dcef2bc
parent2e149a0676b93c3b95d871caf2da7be2dff1a0f9 (diff)
Use unstable deno for NeoVim LSP
I forgot to do this in 8c4e59b. It was causing some issues with missing type declarations for the Kv which was the whole reason for switching to unstable.deno smh my head.
-rw-r--r--home/neovim/lsp.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/neovim/lsp.nix b/home/neovim/lsp.nix
index 90ad12a..20de898 100644
--- a/home/neovim/lsp.nix
+++ b/home/neovim/lsp.nix
@@ -73,7 +73,7 @@
unstable = true,
lint = true,
},
- cmd = { "${pkgs.deno}/bin/deno", "lsp", "--unstable" },
+ cmd = { "${pkgs.unstable.deno}/bin/deno", "lsp", "--unstable" },
root_dir = function(startpath)
if util.find_package_json_ancestor(startpath) then
-- This is a Node project; let tsserver handle this one.