nix-config/users/tacocat/shell/fish.nix

10 lines
147 B
Nix
Raw Normal View History

{...}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
fish_vi_key_bindings
set -g fish_greeting
'';
};
}