2025-03-12 18:33:49 +01:00
|
|
|
if status is-interactive
|
|
|
|
|
# Commands to run in interactive sessions can go here
|
2026-06-22 17:21:34 +02:00
|
|
|
atuin init fish | source
|
2025-03-12 18:33:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
fish_add_path ~/.local/bin
|
2026-06-22 17:21:34 +02:00
|
|
|
fish_add_path ~/.cargo/bin
|
|
|
|
|
|
|
|
|
|
# test nix integration
|
|
|
|
|
fish_add_path ~/.nix-profile/bin
|
|
|
|
|
set -gxa XDG_DATA_DIRS $HOME/.nix-profile/share
|
|
|
|
|
|
2025-03-12 18:33:49 +01:00
|
|
|
abbr -a -- hx helix
|
2025-03-13 11:21:55 +01:00
|
|
|
|
|
|
|
|
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
|