Changeset 68506e0 in dotfiles for guix/.bashrc


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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.