Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: Tweak fish options, add done plugin

+8
+8
modules/home/cli/fish/default.nix
··· 12 12 programs.fish = { 13 13 inherit (config.home) shellAliases; 14 14 enable = true; 15 + interactiveShellInit = '' 16 + set -U fish_greeting 17 + set fish_cursor_default block 18 + set fish_cursor_insert line 19 + set fish_cursor_replace underscore 20 + set fish_cursor_replace_one underscore 21 + ''; 15 22 plugins = 16 23 builtins.map 17 24 (name: { ··· 19 26 inherit (pkgs.fishPlugins.${name}) src; 20 27 }) 21 28 [ 29 + "done" 22 30 "fifc" 23 31 "foreign-env" 24 32 "pisces"