-
Notifications
You must be signed in to change notification settings - Fork 0
/
_bash_aliases
27 lines (23 loc) · 1.19 KB
/
_bash_aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
alias more='less'
alias vi='vim'
alias l.='ls -FGd .*'
alias prettyjson='python -mjson.tool'
function ff() { find . -name '*'$1'*' ; }
function vifind() { find . -name '*'$1'*' -exec vim {} + ; }
export GOPATH=$HOME/go
export EDITOR=vim
export PAGER=less
export PATH="/snap/bin:$GOPATH/bin:$HOME/bin:$HOME/.local/bin:$PATH"
export DEBFULLNAME="Sheila Miguez"
export DEBEMAIL="[email protected]"
export GPGKEY=AD168F70
if [ -f $HOME/.aliases_local ]; then
source $HOME/.aliases_local
fi
if [ -f ~/.git-prompt.sh ]; then
. ~/.git-prompt.sh
GIT_PS1_SHOWCOLORHINTS=true
GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWCOLORHINTS=true
PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\n\\\$ "'
fi