update
This commit is contained in:
@@ -49,6 +49,7 @@ in {
|
||||
vscode-langservers-extracted
|
||||
vue-language-server
|
||||
stylelint-lsp
|
||||
tailwindcss-language-server
|
||||
];
|
||||
c = with pkgs; [
|
||||
clang
|
||||
@@ -56,6 +57,9 @@ in {
|
||||
csharp = with pkgs; [
|
||||
omnisharp-roslyn
|
||||
];
|
||||
gitlab = with pkgs; [
|
||||
gitlab-ci-ls
|
||||
];
|
||||
};
|
||||
|
||||
# This is for plugins that will load at startup without using packadd:
|
||||
@@ -163,6 +167,7 @@ in {
|
||||
typescript = true;
|
||||
c = true;
|
||||
csharp = true;
|
||||
gitlab = true;
|
||||
};
|
||||
# anything else to pass and grab in lua with `nixCats.extra`
|
||||
extra = {
|
||||
|
||||
@@ -711,6 +711,11 @@ require('lze').load {
|
||||
enabled = nixCats('typescript') or false,
|
||||
lsp = {},
|
||||
},
|
||||
{
|
||||
"tailwindcss",
|
||||
enabled = nixCats('typescript') or false,
|
||||
lsp = {},
|
||||
},
|
||||
{
|
||||
"clangd",
|
||||
enabled = nixCats('c') or false,
|
||||
@@ -723,6 +728,11 @@ require('lze').load {
|
||||
-- filetypes = { "go", "gomod", "gowork", "gotmpl" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"gitlab_ci_ls",
|
||||
enabled = nixCats("gitlab") or false,
|
||||
lsp = {},
|
||||
},
|
||||
{
|
||||
"omnisharp",
|
||||
enabled = nixCats("csharp") or false,
|
||||
|
||||
Reference in New Issue
Block a user