This commit is contained in:
2025-10-23 14:54:35 -04:00
parent de4c7eff7c
commit dfd4b364fd
6 changed files with 53 additions and 3 deletions

View File

@@ -51,6 +51,10 @@ in {
stylelint-lsp
tailwindcss-language-server
];
yaml = with pkgs; [
yaml-language-server
gitlab-ci-ls
];
c = with pkgs; [
clang
];
@@ -166,6 +170,7 @@ in {
nix = true;
go = true;
typescript = true;
yaml = true;
c = true;
csharp = true;
gitlab = true;

View File

@@ -718,6 +718,16 @@ require('lze').load {
enabled = nixCats('typescript') or false,
lsp = {},
},
{
"yamlls",
enabled = nixCats('yaml') or false,
lsp = {},
},
{
"gitlab_ci_ls",
enabled = nixCats('yaml') or false,
lsp = {},
},
{
"clangd",
enabled = nixCats('c') or false,