Last active
March 10, 2020 06:07
-
-
Save koirand/0996459cf3b69cf5167862dc0a227e76 to your computer and use it in GitHub Desktop.
This file contains 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
# short alias | |
alias d="docker" | |
alias g="git" | |
alias k="kubectl" | |
alias y="yarn" | |
# cheetsheet alias | |
alias cs="vim ~/Projects/cheetsheet/cheet-sheet.md" | |
# memo alias | |
alias memo="vim + ~/Documents/memo.txt" | |
# node env | |
set -gx PATH $HOME/.nodebrew/current/bin $PATH | |
# go env | |
set -gx GOPATH $HOME/go | |
set -gx PATH $GOPATH/bin $PATH | |
set -gx GO111MODULE on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment