shell.zsh 396 B

12345678910
  1. #
  2. # Shell tweaking
  3. #
  4. if [ -n "$LS_COLORS" ]; then
  5. zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
  6. zstyle ':completion:*:processes' command 'ps -aU$USER -o pid,user,time,cmd --sort user|grep -v "ps -aU$USER -o pid,user,time,cmd --sort user"'
  7. zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([^ ]#) ([^ ]#)[ 0-9:]#([^ :]#)*=01;30=01;31=01;38=01;38'
  8. fi