summaryrefslogtreecommitdiff
path: root/components/programs/zed.nix
diff options
context:
space:
mode:
Diffstat (limited to 'components/programs/zed.nix')
-rw-r--r--components/programs/zed.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/components/programs/zed.nix b/components/programs/zed.nix
new file mode 100644
index 0000000..14f7195
--- /dev/null
+++ b/components/programs/zed.nix
@@ -0,0 +1,37 @@
+{lib, config, ...}: {
+ options.zed.enable = lib.mkEnableOption "Zed editor's config";
+
+ config = lib.mkIf config.zed.enable {
+ programs.zed-editor = {
+ enable = true;
+
+ userSettings = {
+ telemetry = {
+ metrics = false;
+ };
+
+ ui_font_size = 18;
+ buffer_font_size = 18;
+ vim_mode = false;
+
+ format_on_save = "off";
+ hard_tabs = false;
+ tab_size = 2;
+
+ theme = {
+ mode = "system";
+ light = "Gruvbox Dark Soft";
+ dark = "Gruvbox Dark Soft";
+ };
+
+ terminal = {
+ shell = {
+ program = "zsh";
+ };
+
+ cursor_shape = "bar";
+ };
+ };
+ };
+ };
+}