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

12 lines
185 B
Nix
Raw Permalink 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
'';
};
}