27 lines
472 B
Nix
27 lines
472 B
Nix
{
|
|
imports = [
|
|
./emmet.nix
|
|
./go.nix
|
|
./html.nix
|
|
./nix.nix
|
|
./rust.nix
|
|
./c.nix
|
|
./cmake.nix
|
|
];
|
|
|
|
plugins.lsp.servers = {
|
|
eslint.enable = true;
|
|
htmx.enable = true;
|
|
jsonls.enable = true;
|
|
lua-ls.enable = true;
|
|
phpactor.enable = true;
|
|
ruff-lsp.enable = true;
|
|
pyright.enable = true;
|
|
sqls.enable = true;
|
|
tailwindcss.enable = true;
|
|
templ.enable = true;
|
|
ts-ls.enable = true;
|
|
yamlls.enable = true;
|
|
};
|
|
}
|