Skip to content

Instantly share code, notes, and snippets.

@jackfischer
Created September 8, 2022 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackfischer/1727084baf298a84e1f41b27acbe0605 to your computer and use it in GitHub Desktop.
Save jackfischer/1727084baf298a84e1f41b27acbe0605 to your computer and use it in GitHub Desktop.
Fish config
if status is-interactive
# Commands to run in interactive sessions can go here
end
alias gs='git status'
alias gc='git commit'
alias gp='git pull'
alias gpush='git push'
alias ga='git add'
alias gaa='git add --all'
alias gd='git diff'
alias gdc='git diff --cached'
alias gr='git remote -v'
alias gb='git branch'
alias l='ls -alh'
alias nrb='npm run build'
alias nrd='npm run dev'
eval "$(/opt/homebrew/bin/brew shellenv)"
# nodenev
status --is-interactive; and source (nodenv init -|psub)
# pyenv
pyenv init - | source
eval "$(pyenv virtualenv-init -)"
# EdgeDB
fish_add_path /Users/jack/Library/Application Support/edgedb/bin/
source "/Users/jack/Library/Application Support/edgedb/env"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment