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

16 lines
241 B
Nix
Raw Normal View History

2024-02-24 21:22:39 +00:00
{...}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting
2023-11-20 01:27:09 +00:00
fish_vi_key_bindings
set -g fish_cursor_insert line
2023-12-30 02:30:08 +00:00
if not set -q TMUX
tmux attach
end
'';
};
}