Init commit

This commit is contained in:
2025-10-01 06:45:38 -04:00
commit 7df2053a80
10 changed files with 394 additions and 0 deletions

17
config/lsp.nix Normal file
View File

@@ -0,0 +1,17 @@
{
plugins = {
lsp = {
enable = true;
servers = {
rust_analyzer = {
enable = true;
installCargo = false;
installRustc = false;
};
nil_ls = {
enable = true;
};
};
};
};
}