diff --git a/hosts/chidi/default.nix b/hosts/chidi/default.nix index 1ba891c..7a679ca 100644 --- a/hosts/chidi/default.nix +++ b/hosts/chidi/default.nix @@ -43,7 +43,6 @@ ../../profiles/starship.nix ../../profiles/zk.nix ../../profiles/zoxide.nix - ../../profiles/zed.nix ../../profiles/zsh.nix inputs.nixvim.homeModules.nixvim ]; diff --git a/hosts/jason/default.nix b/hosts/jason/default.nix index b5efd42..61b7f15 100644 --- a/hosts/jason/default.nix +++ b/hosts/jason/default.nix @@ -42,7 +42,6 @@ ../../profiles/starship.nix ../../profiles/zk.nix ../../profiles/zoxide.nix - ../../profiles/zed.nix ../../profiles/zsh.nix inputs.nixvim.homeModules.nixvim ]; diff --git a/hosts/tahani/default.nix b/hosts/tahani/default.nix index ef546d7..368f2bb 100644 --- a/hosts/tahani/default.nix +++ b/hosts/tahani/default.nix @@ -43,7 +43,6 @@ ../../profiles/starship.nix ../../profiles/zk.nix ../../profiles/zoxide.nix - ../../profiles/zed-server.nix ../../profiles/zsh.nix inputs.nixvim.homeModules.nixvim ]; diff --git a/profiles/zed-server.nix b/profiles/zed-server.nix deleted file mode 100644 index 4095f48..0000000 --- a/profiles/zed-server.nix +++ /dev/null @@ -1,5 +0,0 @@ -{pkgs, ...}: { - home.packages = with pkgs; [ - zed-editor - ]; -} diff --git a/profiles/zed.nix b/profiles/zed.nix deleted file mode 100644 index a2cb0ba..0000000 --- a/profiles/zed.nix +++ /dev/null @@ -1,97 +0,0 @@ -{ - pkgs, - lib, - user, - ... -}: { - programs.zed-editor = { - enable = true; - extensions = [ - "catppuccin" - "catppuccin-icons" - "nix" - "elixir" - "html" - "toml" - "sql" - "dockerfile" - "make" - "git-firefly" - ]; - userSettings = { - vim_mode = true; - ui_font_size = 16; - buffer_font_size = 16; - buffer_font_family = "TX-02"; - theme = { - mode = "system"; - light = "Catppuccin Latte"; - dark = "Catppuccin Mocha"; - }; - icon_theme = "Catppuccin Latte"; - tab_bar = { - show = false; - }; - toolbar = { - breadcrumbs = false; - quick_actions = false; - selections_menu = false; - }; - scrollbar = { - show = "never"; - }; - indent_guides = { - enabled = true; - coloring = "indent_aware"; - }; - inlay_hints = { - enabled = true; - }; - ssh_connections = [ - { - host = "tahani"; - projects = []; - } - ]; - }; - userKeymaps = [ - { - context = "Editor && VimControl && !VimWaiting && !menu"; - bindings = { - "space f f" = "file_finder::Toggle"; - "space f g" = "pane::DeploySearch"; - "space e" = "workspace::ToggleLeftDock"; - "space b d" = "pane::CloseActiveItem"; - "space b n" = "pane::ActivateNextItem"; - "space b p" = "pane::ActivatePrevItem"; - "space q" = "workspace::CloseWindow"; - "space w v" = "pane::SplitRight"; - "space w s" = "pane::SplitDown"; - "ctrl-h" = ["workspace::ActivatePaneInDirection" "Left"]; - "ctrl-l" = ["workspace::ActivatePaneInDirection" "Right"]; - "ctrl-j" = ["workspace::ActivatePaneInDirection" "Down"]; - "ctrl-k" = ["workspace::ActivatePaneInDirection" "Up"]; - "g r" = "editor::FindAllReferences"; - }; - } - { - context = "Editor && vim_mode == insert"; - bindings = { - "j k" = "vim::NormalBefore"; - }; - } - { - context = "ProjectPanel && not_editing"; - bindings = { - "a" = "project_panel::NewFile"; - "A" = "project_panel::NewDirectory"; - "r" = "project_panel::Rename"; - "d" = "project_panel::Delete"; - "x" = "project_panel::Cut"; - "y" = "project_panel::Copy"; - "p" = "project_panel::Paste"; - }; - } - ]; - }; -}