Added Zed editor
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
./wlogout.nix
|
||||
./xdg.nix
|
||||
./yazi.nix
|
||||
./zed.nix
|
||||
./zsh.nix
|
||||
];
|
||||
}
|
||||
|
||||
21
modules/home/zed.nix
Normal file
21
modules/home/zed.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user