Zed is really cool!!

This commit is contained in:
Emmet 2025-10-25 14:46:42 -05:00
parent cb5659541e
commit 8770c61d40
5 changed files with 30 additions and 6 deletions

View file

@ -10,10 +10,33 @@ in {
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
gitu nixd
];
stylix.targets.zed.enable = true;
programs.zed-editor.enable = true;
programs.zed-editor.extensions = [
"nix"
"gdscript"
"git_firefly"
"toml"
"xml"
"svelte"
"vue"
"scss"
"make"
"dockerfile"
"docker-compose"
"hyprlang"
"java"
"lua"
"r"
"kotlin"
"haskell"
"perl"
"fortran"
"ruby"
"org"
];
};
}