mirror of
https://github.com/akelge/vim
synced 2025-08-15 15:38:34 +00:00
11 lines
176 B
Bash
11 lines
176 B
Bash
# Linux
|
||
if [ -f /etc/dir_colors ]; then
|
||
eval `dircolors /etc/dir_colors`
|
||
else
|
||
eval `dircolors`
|
||
fi
|
||
|
||
alias ls='ls -F --color=auto'
|
||
|
||
# vim: set ts=4 sw=4 tw=0 ft=zsh :
|