mirror of
https://github.com/akelge/vim
synced 2025-07-06 14:59:07 +00:00
12 lines
199 B
Bash
12 lines
199 B
Bash
# Linux
|
||
if [ -f /etc/dir_colors ]; then
|
||
eval `dircolors /etc/dir_colors`
|
||
else
|
||
eval `dircolors`
|
||
fi
|
||
|
||
alias ls='ls -F --color=auto'
|
||
alias open='xdg-open '
|
||
|
||
# vim: set ts=4 sw=4 tw=0 ft=zsh :
|