Last active
October 20, 2017 02:42
-
-
Save setekhid/790172b971b15bddcd8d3a7e2f598525 to your computer and use it in GitHub Desktop.
~HOME
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
# goes into vi mode | |
set -o vi | |
# user's private bin path | |
export PATH="$PATH:$HOME/.local/bin" | |
# for golang | |
export GOPATH="$HOME/.GOPATH" | |
export GOBIN="$HOME/.local/bin" | |
# set color | |
export CLICOLOR=1 | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
# terminal prompt | |
export PS1='👺 \h:\[\e[36m\]\W\[\e[m\]\[\e[31m\]\$\[\e[m\] ' | |
# for git asking gpg key password | |
export GPG_TTY=$(tty) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment