feat: zed-editor
This commit is contained in:
@@ -11,6 +11,7 @@ lib.my.makeSwitch {
|
|||||||
my.coding.editor = {
|
my.coding.editor = {
|
||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
vscode.enable = true;
|
vscode.enable = true;
|
||||||
|
zed.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
20
modules/coding/editor/zed/default.nix
Normal file
20
modules/coding/editor/zed/default.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user