add zed stuff and remove librewolf chroma

This commit is contained in:
notgne2 2025-10-16 02:38:32 -07:00
parent 91068b7338
commit 8426d1b07b
No known key found for this signature in database
3 changed files with 29 additions and 6 deletions

View file

@ -19,6 +19,32 @@ in {
alejandra
];
programs.zed-editor = {
extensions = [
"elm"
"nix"
];
userSettings = {
vim_mode = true;
node = {
path = lib.getExe pkgs.nodejs;
npm_path = lib.getExe' pkgs.nodejs "npm";
};
lsp = {
elm-language-server.initialization_options = {
"elmReviewDiagnostics" = "warning";
# "elmPath" = "${pkgs.elmPackages.elm}/bin/elm";
# "elmReviewPath" = "${pkgs.elmPackages.elm-review}/bin/elm-review";
# "elmFormatPath" = "${pkgs.elmPackages.elm-format}/bin/elm-format";
"elmPath" = "elm";
"elmReviewPath" = "elm-review";
"elmFormatPath" = "elm-format";
};
};
};
};
programs.vscode = {
package = pkgs.vscodium;
userSettings = {