mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
16 lines
495 B
Bash
16 lines
495 B
Bash
alias ll='ls -G -l'
|
|
alias ls='ls -G'
|
|
|
|
export EDITOR='vim'
|
|
|
|
export PATH=$PATH:~/.nexustools
|
|
export PATH=$PATH:/Applications/Araxis\ Merge.app/Contents/Utilities
|
|
|
|
#export PS1='\u:☕️ \W \$ '
|
|
if [ -f $(brew --prefix)/etc/bash_completion ]; then
|
|
source $(brew --prefix)/etc/bash_completion
|
|
source $(brew --prefix)/etc/bash_completion.d/git-completion.bash
|
|
source $(brew --prefix)/etc/bash_completion.d/git-prompt.sh
|
|
fi
|
|
export GIT_PS1_SHOWDIRTYSTATE=true
|
|
export PS1='\h:\W \$$(__git_ps1) '
|