my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

Make bash history tolerable, remove be alias

+9 -3
+9 -3
.env
··· 2 2 3 3 PS1='$(prompt) \$ ' 4 4 5 + # handle history like a not caveman 6 + # Avoid duplicates 7 + HISTCONTROL=ignoredups:erasedups 8 + # When the shell exits, append to the history file instead of overwriting it 9 + shopt -s histappend 10 + 11 + # After each command, append to the history file and reread it 12 + PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; history -c; history -r" 13 + 5 14 # extend pa for git stuffs 6 15 pa() { 7 16 case $1 in ··· 48 57 syncthing --no-browser > /dev/null & 49 58 fi 50 59 fi 51 - 52 - # chef stuff 53 - alias be='bundle exec'