diff options
| author | adikro <adikro@disroot.org> | 2025-12-20 03:14:45 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-20 03:14:45 +0100 |
| commit | 791bc419b6dac7c70951981ef6b34cdf85828470 (patch) | |
| tree | 56d0962fdf829ae942feb1344763e54dbc3c89a3 /modules/hm/terminal/fish.nix | |
| parent | e60410393cea222b16743a1a87f29c06b9b3543b (diff) | |
absolutely massive rewrite, made (almost) everything modular with changes to come
Diffstat (limited to 'modules/hm/terminal/fish.nix')
| -rw-r--r-- | modules/hm/terminal/fish.nix | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/modules/hm/terminal/fish.nix b/modules/hm/terminal/fish.nix deleted file mode 100644 index ec75de8..0000000 --- a/modules/hm/terminal/fish.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ pkgs, ... }: -{ - programs.fish = { - enable = true; - - interactiveShellInit = '' - set fish_greeting - fastfetch - ''; - - shellAliases = { - nos = "nh os switch"; - nob = "nh os boot"; - nfu = "nix flake update"; - ll = "ls -lah"; - la = "ls -A"; - md = "mkdir -p"; - rmf = "rm -rf"; - gl = "git log --oneline --graph --decorate"; - untar = "tar -xzvf"; - tarc = "tar -czvf"; - ff = "fastfetch"; - cat = "bat"; - ls = "eza"; - }; - - plugins = [ - { - name = "transient-fish"; - src = pkgs.fishPlugins.transient-fish.src; - } - { - name = "fishbang"; - src = pkgs.fishPlugins.fishbang.src; - } - { - name = "puffer"; - src = pkgs.fishPlugins.puffer.src; - } - { - name = "pisces"; - src = pkgs.fishPlugins.pisces.src; - } - { - name = "fzf-fish"; - src = pkgs.fishPlugins.fzf-fish.src; - } - { - name = "fish-you-should-use"; - src = pkgs.fishPlugins.fish-you-should-use.src; - } - { - name = "colored-man-pages"; - src = pkgs.fishPlugins.colored-man-pages.src; - } - { - name = "fifc"; - src = pkgs.fishPlugins.fifc.src; - } - ]; - }; -} |
