home/editor: add unison lsp
This commit is contained in:
parent
a2e8ca16e0
commit
148f52df5c
1 changed files with 11 additions and 1 deletions
|
@ -5,5 +5,15 @@
|
|||
nil.command = "${inputs.nil.packages.${pkgs.system}.nil}/bin/nil";
|
||||
pylsp.command = "${python3Packages.python-lsp-server}/bin/pylsp";
|
||||
rust-analyzer.command = "${rust-analyzer}/bin/rust-analyzer";
|
||||
ucm-tcp = {
|
||||
command = "${socat}/bin/socat";
|
||||
args = [ "stdio" "tcp4-connect:127.0.0.1:5757" ];
|
||||
};
|
||||
};
|
||||
language = [
|
||||
{
|
||||
name = "unison";
|
||||
language-servers = [ "ucm-tcp" ];
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue