initial
This commit is contained in:
parent
d67e39f3f7
commit
58ef6d327f
1725 changed files with 129819 additions and 0 deletions
17
dot_oh-my-zsh/plugins/grc/grc.plugin.zsh
Normal file
17
dot_oh-my-zsh/plugins/grc/grc.plugin.zsh
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
# common grc.zsh paths
|
||||
files=(
|
||||
/etc/grc.zsh # default
|
||||
/usr/local/etc/grc.zsh # homebrew
|
||||
)
|
||||
|
||||
# verify the file is readable and source it
|
||||
for file in $files; do
|
||||
if [[ -r "$file" ]]; then
|
||||
source "$file"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
unset file files
|
||||
Loading…
Add table
Add a link
Reference in a new issue