nix-config/users/tacocat/shell/fish.nix
2024-02-24 16:22:39 -05:00

16 lines
241 B
Nix

{...}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting
fish_vi_key_bindings
set -g fish_cursor_insert line
if not set -q TMUX
tmux attach
end
'';
};
}