From a5f19b4822fadd9e441f410fc8b7f8c5fcad5099 Mon Sep 17 00:00:00 2001 From: alexion Date: Sat, 18 Jul 2026 19:15:18 -0400 Subject: [PATCH] Split the plugin comment and drop a redundant one --- modules/fish/fish.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/fish/fish.nix b/modules/fish/fish.nix index b061318..19425f9 100644 --- a/modules/fish/fish.nix +++ b/modules/fish/fish.nix @@ -48,20 +48,19 @@ in # shortcuts, matching the abbreviation-first style below. preferAbbrs = true; - # done notifies when a long command finishes; bang-bang restores the !! - # and !$ history bindings. plugins = [ + # Notify when a long command finishes. { name = "done"; src = pkgs.fishPlugins.done.src; } + # Restore the !! and !$ history bindings. { name = "bang-bang"; src = pkgs.fishPlugins.bang-bang.src; } ]; - # Only the eza listings stay aliases; everything else is an abbreviation. shellAliases = { ls = "eza -al --color=always --group-directories-first --icons"; la = "eza -a --color=always --group-directories-first --icons";