14 lines
425 B
Fish
14 lines
425 B
Fish
fish_vi_key_bindings
|
|
|
|
# Initialize starship prompt
|
|
starship init fish | source
|
|
|
|
# Load aliases if they exist
|
|
test -f ~/.config/fish/aliases.fish && source ~/.config/fish/aliases.fish
|
|
|
|
# Parse Slackware's system locale setup cleanly into Fish configuration
|
|
if test -f /etc/profile.d/lang.sh
|
|
set -gx LANG (string match -r '(?<=export LANG=).*' < /etc/profile.d/lang.sh | string trim -c '"\'')
|
|
end
|
|
|
|
set -gx LANG en_US.UTF-8
|