mirror of
https://github.com/akelge/vim
synced 2025-08-16 07:48:35 +00:00
9 lines
145 B
Bash
9 lines
145 B
Bash
# Linux
|
||
if [ -f /etc/dir_colors ]; then
|
||
eval `dircolors /etc/dir_colors`
|
||
else
|
||
eval `dircolors`
|
||
fi
|
||
|
||
# vim: set ts=4 sw=4 tw=0 ft=zsh :
|