added go LSP support, I think.

This commit is contained in:
Gabe Venberg 2026-03-16 00:53:25 +01:00
parent 35fb7ffcb1
commit f75102b78e
3 changed files with 17 additions and 1 deletions

View file

@ -151,7 +151,6 @@ inputs: {
];
};
config.specs.zk = {
after = ["general" "lazy"];
data = with pkgs.vimPlugins; [
@ -174,6 +173,15 @@ inputs: {
];
};
config.specs.go = {
name = "go";
after = ["general" "lazy"];
data = null;
extraPackages = with pkgs; [
gopls
];
};
config.specs.nix = {
name = "nix";
after = ["general" "lazy"];