n-cd.conf 816 B

12345678910111213141516171819202122232425
  1. # Hotlist
  2. local hotlist
  3. hotlist=(
  4. /usr/share/zsh/site-functions
  5. /usr/share/zsh
  6. /usr/local/share/zsh/site-functions
  7. /usr/local/share/zsh
  8. /usr/local/bin
  9. /usr/lib
  10. )
  11. # Suppress adding (to directory stack) directories visited by n-cd
  12. # Value 0 is the default (directories will be added to dirstack)
  13. local NCD_DONT_PUSHD=0
  14. # How should be current element of the list drawn. Possible values: reverse,
  15. # underline. Default (without option set) is reverse
  16. # On Linux virtual terminal this will be enforced to reverse (because of poor
  17. # underline support on that terminal)
  18. # local active_text=underline
  19. # Colorize last segments of the paths
  20. # (#s) is ^, (#e) is $, # is *, ## is + (comparing to regex)
  21. local NLIST_COLORING_PATTERN="[a-zA-Z0-9 ._-]##/#(#e)"
  22. local NLIST_COLORING_COLOR=$'\x1b[00;33m'