fish: switch prompt from tide to hydro
Alan Pearce alan@alanpearce.eu
Sat, 30 Nov 2024 17:30:37 +0100
1 files changed, 11 insertions(+), 1 deletions(-)
jump to
M user/settings/fish.nix → user/settings/fish.nix
@@ -9,9 +9,17 @@ let fromNixpkgs = pkg: { name = pkg.name; src = pkg.src; }; in with pkgs.fishPlugins; [ - (fromNixpkgs tide) (fromNixpkgs fzf-fish) (fromNixpkgs autopair) + { + name = "fishplugin-hydro"; + src = pkgs.fetchFromGitHub { + owner = "alanpearce"; + repo = "hydro"; + hash = "sha256-QYq4sU41/iKvDUczWLYRGqDQpVASF/+6brJJ8IxypjE="; + rev = "7a8c468ba0dc88a5f8a9c0b8635020bfc3619323"; + }; + } { name = "ghq"; src = pkgs.fetchFromGitHub { @@ -31,6 +39,8 @@ # don't bind ctrl-t, it does nice things on macOS/BSD set FZF_CTRL_T_COMMAND set --export FZF_DEFAULT_OPTS '--cycle --layout=reverse --border --height=90% --preview-window=wrap --marker="*"' fzf_configure_bindings --directory=\cx\cf + + set --universal hydro_multiline true ''; shellAliases = { hist-freq-lines = lib.mkForce "history | sort | uniq -c | sort -gr | head -n100 | less";