summary refs log tree commit diff stats
path: root/user/settings/fish.nix
blob: 6ebd3add97696346578dcb8890d7e6ba76a5f5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ pkgs
, ...
}: {
  programs.fish = {
    enable = true;
    plugins = [
      {
        name = "tide";
        src = pkgs.fetchFromGitHub {
          # https://github.com/IlanCosman/tide
          owner = "IlanCosman";
          repo = "tide";
          rev = "a3426e157f94b8a9cb5bcf96946b1e55625a1948";
          sha256 = "1fwqmsrd6bpf67rgj6f362abjmpk6q8yynyskc4niwg3g15diqq5";
        };
      }
    ];
  };
}