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 ./wlogout.nix
./xdg.nix ./xdg.nix
./yazi.nix ./yazi.nix
./zed.nix
./zsh.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";
};
};
};
}

View File

@@ -17,6 +17,7 @@
# enable = true; # enable = true;
# enableSSHSupport = true; # enableSSHSupport = true;
# }; # };
nix-ld.enable = true;
zsh.enable = true; zsh.enable = true;
}; };