14 lines
347 B
Fish
Executable File
14 lines
347 B
Fish
Executable File
# In ~/.config/fish/config.fish
|
|
|
|
# Fixing some Programs that do not know Kitty or Alacritty
|
|
|
|
# Check if the local terminal supports color (kitty, alacritty, etc.)
|
|
if test "$TERM" = "xterm-kitty"; or test "$TERM" = "alacritty"
|
|
alias ssh='env TERM=xterm-256color ssh'
|
|
end
|
|
|
|
if command -q zoxide
|
|
zoxide init fish | source
|
|
alias cd='z'
|
|
end
|