home/editor: add unison lsp

This commit is contained in:
Max Headroom 2023-11-10 01:20:05 +01:00
parent a2e8ca16e0
commit 148f52df5c

View file

@ -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" ];
}
];
}