blob: 080811948b094b6f927e2dd5f9f202b0d302761c (
plain)
1
2
3
4
5
6
7
8
9
|
if status is-interactive
# Commands to run in interactive sessions can go here
set -g fish_greeting
abbr --add lf lfcd
fzf --fish | source
# Set fish_key_bindings globally per 4.3 update instructions
set --global fish_key_bindings fish_default_key_bindings
end
|