blob: 2225b17baab6b55c2324ce8ae5a6140dc756dfc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if status is-interactive
# Commands to run in interactive sessions can go here
end
fish_vi_key_bindings
function fish_user_key_bindings
for mode in insert default visual
bind -M $mode \cf forward-char
end
end
direnv hook fish | source
|