22 lines
519 B
Fish
22 lines
519 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
atuin init fish | source
|
|
end
|
|
|
|
fish_add_path ~/.local/bin
|
|
fish_add_path ~/.cargo/bin
|
|
|
|
# test nix integration
|
|
fish_add_path ~/.nix-profile/bin
|
|
set -gxa XDG_DATA_DIRS $HOME/.nix-profile/share
|
|
|
|
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
|