aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/zshrc b/zshrc
index bb30881..3d180fb 100644
--- a/zshrc
+++ b/zshrc
@@ -1,5 +1,14 @@
#!/usr/bin/env zsh
+typeset -A ZSH_HIGHLIGHT_STYLES
+ZSH_HIGHLIGHT_STYLES[path]='fg=cyan'
+HYPHEN_INSENSITIVE="true"
+DISABLE_UPDATE_PROMPT="true"
+DISABLE_AUTO_TITLE="true"
+setopt HIST_IGNORE_ALL_DUPS
+setopt NO_BEEP
+setopt MENU_COMPLETE
+
fpath=(~/.local/share/zsh/site-functions "${fpath[@]}")
if [ -d "${HOME}/.zsh" ]; then for f in ~/.zsh/*; do source $f; done; fi