Changeset 68506e0 in dotfiles
- Timestamp:
- Jan 11, 2020, 10:11:34 AM (5 years ago)
- Branches:
- master
- Children:
- a1bb8c2
- Parents:
- 4eeec4b
- Location:
- guix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/.bash_profile
r4eeec4b r68506e0 19 19 setxkbmap -layout us,ru -option grp:caps_toggle 20 20 21 #Shepherd (with emacs daemon) 22 shepherd & 21 sh export GDK_CORE_DEVICE_EVENTS=1 23 22 24 23 export ALTERNATE_EDITOR="" … … 26 25 export VISUAL="emacsclient -c -a emacs" # $VISUAL opens in GUI mode 27 26 27 [[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \ 28 . /usr/share/bash-completion/bash_completion 29 28 30 if [ -f .bashrc ] 29 31 then -
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.