Skip to content

Instantly share code, notes, and snippets.

@NatWeiss
Last active August 12, 2022 23:46
Show Gist options
  • Save NatWeiss/87ace97f35398104fd630faf8d5e14c9 to your computer and use it in GitHub Desktop.
Save NatWeiss/87ace97f35398104fd630faf8d5e14c9 to your computer and use it in GitHub Desktop.
Fish config
# settings
set fish_greeting
set HOME ~
set EDITOR nvim
set HISTSIZE 'INFINITE'
set HISTFILESIZE 'INFINITE'
# load aliases
alias v="my_vim"
alias w="cd /Wraithbinder && clear && cat .art"
alias gs="git status"
alias gd="git diff"
#alias gc="git commit -a; git push; git status"
#alias gp="git push; git status"
#alias ga="git addall"
# art
clear
if status --is-interactive
if [ -f .logo ]
cat .logo
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment