Created
April 30, 2019 15:15
-
-
Save bilzard/4ab2030172e8e1f7604be0d543da2f16 to your computer and use it in GitHub Desktop.
$HOME/config/fish/config.fish
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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