From ab3a491b47f90b86e631a756d883170895a6cf81 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Wed, 6 Dec 2023 22:11:52 +0100 Subject: [PATCH] add zsh fzf plugin --- modules/home/zsh/default.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/home/zsh/default.nix b/modules/home/zsh/default.nix index 6d01f27..a38d1df 100755 --- a/modules/home/zsh/default.nix +++ b/modules/home/zsh/default.nix @@ -8,6 +8,7 @@ oh-my-zsh = { enable = true; plugins = [ "git" ]; + plugins = [ "fzf" ]; }; shellAliases = { @@ -33,18 +34,18 @@ # nix-cleanboot = "sudo /run/current-system/bin/switch-to-configuration boot"; # Git - ga = "git add"; - gaa = "git add --all"; - gs = "git status"; - gb = "git branch"; - gm = "git merge"; - gpl = "git pull"; + ga = "git add"; + gaa = "git add --all"; + gs = "git status"; + gb = "git branch"; + gm = "git merge"; + gpl = "git pull"; gplo = "git pull origin"; - gps = "git push"; + gps = "git push"; gpso = "git push origin"; - gc = "git commit"; - gcm = "git commit -m"; - gch = "git checkout"; + gc = "git commit"; + gcm = "git commit -m"; + gch = "git checkout"; gchb = "git checkout -b"; gcoe = "git config user.email"; gcon = "git config user.name"; @@ -60,6 +61,5 @@ programs.zoxide = { enable = true; enableZshIntegration = true; - }; }