Added Zed editor

This commit is contained in:
2025-11-16 22:15:29 -05:00
parent d55077e045
commit 97ef9a7a9e
3 changed files with 23 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
./wlogout.nix
./xdg.nix
./yazi.nix
./zed.nix
./zsh.nix
];
}

21
modules/home/zed.nix Normal file
View File

@@ -0,0 +1,21 @@
{
pkgs,
...
}:
{
programs.zed-editor = {
enable = true;
extensions = [
"nix"
"catppuccin"
];
extraPackages = [ pkgs.nixd ];
userSettings = {
theme = "Catppuccin Mocha";
features = {
edit_prediction_provider = "copilot";
};
};
};
}