Files
dots/fish/config.fish
Indrajith 51381df5cf Dots Updated
* Adds fish alias for ssh to support xterm
2024-07-03 02:20:48 +05:30

11 lines
260 B
Fish

if status is-interactive
# Commands to run in interactive sessions can go here
end
function fish_greeting
echo "Greetings Professor Falken" | lolcat
end
alias open_file='fzf --preview "less {}" | xargs -o vim'
alias ssh='env TERM=xterm-256color ssh'