Add zed as an editor

Signed-off-by: Noah Knegt <git@noahknegt.com>
This commit is contained in:
2025-03-01 15:43:13 +01:00
parent 954f9687b5
commit 9fc0b33228
2 changed files with 24 additions and 0 deletions

View File

@@ -3,5 +3,6 @@
{
imports = [
./vscode.nix
./zed.nix
];
}

23
home-manager/IDEs/zed.nix Normal file
View File

@@ -0,0 +1,23 @@
{ ... }:
{
programs.zed-editor = {
enable = true;
userSettings = {
features = {
copilot = false;
};
telemetry = {
metrics = false;
};
vim_mode = false;
};
extensions = [
"nix"
];
};
}