add zsh fzf plugin

This commit is contained in:
Frost-Phoenix 2023-12-06 22:11:52 +01:00
parent 0387ffe161
commit ab3a491b47

View file

@ -8,6 +8,7 @@
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" ]; plugins = [ "git" ];
plugins = [ "fzf" ];
}; };
shellAliases = { shellAliases = {
@ -33,18 +34,18 @@
# nix-cleanboot = "sudo /run/current-system/bin/switch-to-configuration boot"; # nix-cleanboot = "sudo /run/current-system/bin/switch-to-configuration boot";
# Git # Git
ga = "git add"; ga = "git add";
gaa = "git add --all"; gaa = "git add --all";
gs = "git status"; gs = "git status";
gb = "git branch"; gb = "git branch";
gm = "git merge"; gm = "git merge";
gpl = "git pull"; gpl = "git pull";
gplo = "git pull origin"; gplo = "git pull origin";
gps = "git push"; gps = "git push";
gpso = "git push origin"; gpso = "git push origin";
gc = "git commit"; gc = "git commit";
gcm = "git commit -m"; gcm = "git commit -m";
gch = "git checkout"; gch = "git checkout";
gchb = "git checkout -b"; gchb = "git checkout -b";
gcoe = "git config user.email"; gcoe = "git config user.email";
gcon = "git config user.name"; gcon = "git config user.name";
@ -60,6 +61,5 @@
programs.zoxide = { programs.zoxide = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
}; };
} }