feat: zed-editor

This commit is contained in:
2025-06-21 22:55:37 +08:00
parent 4685f31aa1
commit 0c679290c5
3 changed files with 21 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ lib.my.makeSwitch {
my.coding.editor = {
neovim.enable = true;
vscode.enable = true;
zed.enable = true;
};
};
}

View File

@@ -0,0 +1,20 @@
{
config,
lib,
...
}:
lib.my.makeHomeProgramConfig {
inherit config;
programName = "zed-editor";
optionPath = [
"coding"
"editor"
"zed"
];
extraConfig = {
my.persist.homeDirs = [
".config/zed"
".local/share/zed"
];
};
}