summaryrefslogtreecommitdiff
path: root/common/programs/fish.nix
blob: 8d9be78a621003befc7e679816cc7372cb3f7dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  pkgs,
  ...
}:
{
  # home.packages = with pkgs; [
  #   fzf
  # ];

  programs.fish = {
    enable = true;
    interactiveShellInit =
      #fish
      ''
        function fish_mode_prompt
        end
        set -g fish_greeting ""
        set -U fish_autosuggestion_enabled 0
        fish_vi_key_bindings
      '';
  };
}