Changeset 68506e0 in dotfiles


Ignore:
Timestamp:
Jan 11, 2020, 10:11:34 AM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
a1bb8c2
Parents:
4eeec4b
Message:

update bash

Location:
guix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • guix/.bash_profile

    r4eeec4b r68506e0  
    1919setxkbmap -layout us,ru -option grp:caps_toggle
    2020
    21 #Shepherd (with emacs daemon)
    22 shepherd &
     21sh export GDK_CORE_DEVICE_EVENTS=1
    2322
    2423export ALTERNATE_EDITOR=""
     
    2625export VISUAL="emacsclient -c -a emacs"         # $VISUAL opens in GUI mode
    2726
     27[[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \
     28    . /usr/share/bash-completion/bash_completion
     29
    2830if [ -f .bashrc ]
    2931then
  • guix/.bashrc

    r4eeec4b r68506e0  
    2525    PS1='\u@\h \w [env]\$ '
    2626else
    27     PS1='\u@\h \w\$ '
     27    PS1='\u \w\$ '
    2828fi
    29 alias ls='ls -p --color=auto'
    30 alias ll='ls -l'
    31 alias grep='grep --color=auto'
     29
     30# Colored ls
     31export LS_OPTIONS='--color=auto'
     32eval "`dircolors`"
     33alias ls='ls $LS_OPTIONS'
     34
     35# Autocomplete bash
     36complete -cf sudo
     37set -o history
     38set -o notify
     39shopt -q -s cdspell
     40shopt -s autocd
    3241
    3342streaming() {
Note: See TracChangeset for help on using the changeset viewer.