Skip to content

Instantly share code, notes, and snippets.

@bilzard
Created April 30, 2019 15:15
Show Gist options
  • Save bilzard/4ab2030172e8e1f7604be0d543da2f16 to your computer and use it in GitHub Desktop.
Save bilzard/4ab2030172e8e1f7604be0d543da2f16 to your computer and use it in GitHub Desktop.
$HOME/config/fish/config.fish
# go
set -x GOPATH $HOME/.go
set -x PATH $HOME/.go/bin $PATH
# direnv
direnv hook fish | source
set -x EDITOR vim
# terraform
alias tp="terraform plan"
alias ta="terraform apply"
# git
alias gd="git diff"
alias gl="git log"
alias gs="git status"
# anyenv
status --is-interactive; and source (anyenv init -|psub)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment