16 lines
357 B
Fish
16 lines
357 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
fish_add_path ~/.local/bin
|
|
abbr -a -- hx helix
|
|
|
|
set -gx EDITOR helix
|
|
|
|
# Workaround bug https://github.com/fish-shell/fish-shell/issues/11204
|
|
# Numbers don't work in azerty/dvorak
|
|
set -Ua fish_features no-keyboard-protocols
|
|
|
|
# Setup starship
|
|
starship init fish | source
|