diff --git a/modules/darwin/home/default.nix b/modules/darwin/home/default.nix index b16213c..5fceea1 100644 --- a/modules/darwin/home/default.nix +++ b/modules/darwin/home/default.nix @@ -7,7 +7,6 @@ in { imports = [ ./ghostty.nix - ./zed.nix ]; home = { diff --git a/modules/darwin/home/zed.nix b/modules/darwin/home/zed.nix deleted file mode 100644 index 0c81e39..0000000 --- a/modules/darwin/home/zed.nix +++ /dev/null @@ -1,58 +0,0 @@ -{pkgs, ...}: -{ - programs.zed-editor = { - enable = true; - extraPackages = [ - pkgs.vtsls - ]; - userSettings = { - theme = { - mode = "system"; - light = "One Light"; - dark = "Catppuccin Mocha"; - }; - buffer_font_family = "Iosevka Nerd Font"; - buffer_font_size = 17; - ui_font_family = "Iosevka Nerd Font"; - ui_font_size = 16; - vim_mode = true; - ssh_connections = [ - { - host = "tahani"; - projects = [ - { - paths = [ - "/home/cschmatzler/Projects/Personal/shnosh" - ]; - } - ]; - } - ]; - format_on_save = "off"; - buffer_font_features = { - calt = 0; - }; - inlay_hints = { - enabled = true; - show_value_hints = true; - show_type_hints = true; - show_parameter_hints = true; - show_other_hints = true; - show_background = false; - edit_debounce_ms = 700; - scroll_debounce_ms = 50; - toggle_on_modifiers_press = { - control = false; - alt = false; - shift = false; - platform = false; - function = false; - }; - }; - telemetry = { - diagnostics = false; - metrics = false; - }; - }; - }; -} diff --git a/modules/home/git.nix b/modules/home/git.nix index 39f140f..f2efdee 100644 --- a/modules/home/git.nix +++ b/modules/home/git.nix @@ -5,7 +5,6 @@ in { enable = true; ignores = ["*.swp"]; userName = name; - userEmail = "christoph@schmatzler.com"; lfs = { enable = true; };