mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
11 lines
237 B
Bash
11 lines
237 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
configure_dircolors() {
|
||
|
[[ -f ~/.dircolors ]] && eval "$(dircolors ~/.dircolors)"
|
||
|
[[ -z "$LS_COLORS" ]] && eval "$(dircolors -b)"
|
||
|
|
||
|
zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
|
||
|
}
|
||
|
|
||
|
configure_dircolors
|