summaryrefslogtreecommitdiff
path: root/.zsh/omz/compfix.zsh
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2022-08-08 09:30:04 +0300
committerSyndamia <kamen@syndamia.com>2022-08-08 09:30:04 +0300
commit505b88bf8462bea78d082d2ba03273ce114f8239 (patch)
treee6238a44c1849a0a8ef56cd74338de5b112d840c /.zsh/omz/compfix.zsh
parentf2454322fd6135a5c23c4fcb5a1622aed81f91d2 (diff)
downloaddotfiles-505b88bf8462bea78d082d2ba03273ce114f8239.tar
dotfiles-505b88bf8462bea78d082d2ba03273ce114f8239.tar.gz
dotfiles-505b88bf8462bea78d082d2ba03273ce114f8239.zip
Added a zsh omz files update script and updated certain omz libs
Diffstat (limited to '.zsh/omz/compfix.zsh')
-rw-r--r--.zsh/omz/compfix.zsh26
1 files changed, 15 insertions, 11 deletions
diff --git a/.zsh/omz/compfix.zsh b/.zsh/omz/compfix.zsh
index 290760e..b09b283 100644
--- a/.zsh/omz/compfix.zsh
+++ b/.zsh/omz/compfix.zsh
@@ -25,16 +25,20 @@ function handle_completion_insecurities() {
ls -ld "${(@)insecure_dirs}"
cat <<EOD
-[omz] For safety, we will not load completions from these directories until
-[omz] you fix their permissions and ownership and restart zsh.
-[omz] See the above list for directories with group or other writability.
-[omz] To fix your permissions you can do so by disabling
-[omz] the write permission of "group" and "others" and making sure that the
-[omz] owner of these directories is either root or your current user.
-[omz] The following command may help:
-[omz] compaudit | xargs chmod g-w,o-w
-[omz] If the above didn't help or you want to skip the verification of
-[omz] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to
-[omz] "true" before oh-my-zsh is sourced in your zshrc file.
+
+[oh-my-zsh] For safety, we will not load completions from these directories until
+[oh-my-zsh] you fix their permissions and ownership and restart zsh.
+[oh-my-zsh] See the above list for directories with group or other writability.
+
+[oh-my-zsh] To fix your permissions you can do so by disabling
+[oh-my-zsh] the write permission of "group" and "others" and making sure that the
+[oh-my-zsh] owner of these directories is either root or your current user.
+[oh-my-zsh] The following command may help:
+[oh-my-zsh] compaudit | xargs chmod g-w,o-w
+
+[oh-my-zsh] If the above didn't help or you want to skip the verification of
+[oh-my-zsh] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to
+[oh-my-zsh] "true" before oh-my-zsh is sourced in your zshrc file.
+
EOD
}