]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/grc/grc.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / grc / grc.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/grc/grc.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/grc/grc.plugin.zsh
deleted file mode 100644 (file)
index b709b9e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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