From 6e73c7e5a86d6ef538f108bbe15253596d7fb2ff Mon Sep 17 00:00:00 2001 From: Sangmin Kim Date: Thu, 5 Mar 2026 11:06:24 +0900 Subject: [PATCH] feat(home): zsh plugins --- home/default.nix | 1 + home/zsh.nix | 11 +++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/home/default.nix b/home/default.nix index 8717271..4e11147 100755 --- a/home/default.nix +++ b/home/default.nix @@ -20,6 +20,7 @@ ./ghostty.nix ./bat.nix ./aerospace.nix + # TODO ./pass.nix ]; home = { diff --git a/home/zsh.nix b/home/zsh.nix index 7a9278c..8e11bdb 100755 --- a/home/zsh.nix +++ b/home/zsh.nix @@ -6,6 +6,8 @@ autosuggestion.enable = true; syntaxHighlighting.enable = true; + defaultKeymap = "viins"; + history = { size = 10000; save = 10000; @@ -17,8 +19,8 @@ shellAliases = { poby = "echo my name is poby"; - drs = "sudo darwin-rebuild switch --flake ~/nix-darwin#$(hostname)"; - drt = "sudo darwin-rebuild test --flake ~/nix-darwin#$(hostname)"; + drs = "sudo darwin-rebuild switch --flake ~/nix-darwin#$(hostname)"; # TODO change to just script + drt = "sudo darwin-rebuild test --flake ~/nix-darwin#$(hostname)"; # TODO change to just script }; sessionVariables = { @@ -30,9 +32,10 @@ theme = "robbyrussell"; plugins = [ "git" + "gitignore" "history" - "zoxide" - "eza" + "sudo" + "vi-mode" ]; }; };