11 lines
260 B
Fish
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'
|