nix-config/users/tacocat/shell/fish.nix
2024-04-19 14:45:02 -04:00

12 lines
185 B
Nix

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