Skip to content

Commit

Permalink
helix: configure typescript language server
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Sep 17, 2024
1 parent 11c5b71 commit 71dc977
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions home/helix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,18 @@
};
};
languages = {
language-server.pyright = {
command = "${pkgs.pyright}/bin/pyright-langserver";
args = [
"--stdio"
];
language-server = {
pyright = {
command = "${pkgs.pyright}/bin/pyright-langserver";
args = [
"--stdio"
];
};
typescript = {
command = "${pkgs.typescript-language-server}/bin/typescript-language-server";
args = ["--stdio"];
config.hostInfo = "helix";
};
};
# language-server.rnix = {
# command = "${lib.getExe pkgs.rnix-lsp}";
Expand Down

0 comments on commit 71dc977

Please sign in to comment.