diff --git a/zsh/zshrc.org b/zsh/zshrc.org index 141b780..47011cd 100644 --- a/zsh/zshrc.org +++ b/zsh/zshrc.org @@ -40,6 +40,19 @@ Autoload any ZSH function from =$HOME/.zsh/functions=. alias scrot="/usr/bin/scrot -e 'mv \$f ~/pictures/screenshots/'" #+end_src + Show colors and an indicator of what type each file is when using ~ls~, like + directory, pipe, link, etc. + + #+begin_src sh + alias ls="ls --classify --color=always" + #+end_src + + Always show color in pacman output. + + #+begin_src sh + alias pacman="pacman --color=always" + #+end_src + * History Store ZSH history in a non-intrusive place.