zsh/zsh.d/Linux/50-linux.zsh

15 lines
321 B
Bash
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Linux
if which dircolors > /dev/null; then
if [ -f /etc/dir_colors ]; then
eval `dircolors /etc/dir_colors`
else
eval `dircolors $BASE/zsh.d/Linux/dircolors`
fi
fi
alias ls='LANG=C ls -F --color=auto --group-directories-first'
alias open='xdg-open '
# vim: set ts=4 sw=4 tw=0 ft=zsh :