Changeset 68506e0 in dotfiles for guix/.bashrc
- Timestamp:
- Jan 11, 2020, 10:11:34 AM (5 years ago)
- Branches:
- master
- Children:
- a1bb8c2
- Parents:
- 4eeec4b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/.bashrc
r4eeec4b r68506e0 25 25 PS1='\u@\h \w [env]\$ ' 26 26 else 27 PS1='\u @\h\w\$ '27 PS1='\u \w\$ ' 28 28 fi 29 alias ls='ls -p --color=auto' 30 alias ll='ls -l' 31 alias grep='grep --color=auto' 29 30 # Colored ls 31 export LS_OPTIONS='--color=auto' 32 eval "`dircolors`" 33 alias ls='ls $LS_OPTIONS' 34 35 # Autocomplete bash 36 complete -cf sudo 37 set -o history 38 set -o notify 39 shopt -q -s cdspell 40 shopt -s autocd 32 41 33 42 streaming() {
Note:
See TracChangeset
for help on using the changeset viewer.