Skip to content
Snippets Groups Projects
Commit a9ce2131 authored by Santiago Rodriguez's avatar Santiago Rodriguez
Browse files

- Honor user prefs.

# Closes http://trisquel.info/es/issues/4297
parent 0614508d
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,8 @@
# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ] && [ -x /usr/bin/dircolors ]; then
eval "`dircolors -b`"
#Honor user prefs. Closes #4297
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias ll='ls -lh'
alias la='ls -A'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment