aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/zshrc')
-rw-r--r--zsh/zshrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/zsh/zshrc b/zsh/zshrc
index 7d8a754..53fb25a 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -29,6 +29,7 @@ setopt HIST_SAVE_NO_DUPS
29setopt INC_APPEND_HISTORY 29setopt INC_APPEND_HISTORY
30setopt SHARE_HISTORY 30setopt SHARE_HISTORY
31setopt HIST_IGNORE_ALL_DUPS 31setopt HIST_IGNORE_ALL_DUPS
32setopt HIST_IGNORE_SPACE
32 33
33source_file "$HOME/.opam/opam-init/init.zsh" 34source_file "$HOME/.opam/opam-init/init.zsh"
34 35
@@ -43,6 +44,11 @@ case "$OSTYPE" in
43 ;; 44 ;;
44esac 45esac
45 46
47if (( ${+ZSH_HIGHLIGHT_STYLES} )); then
48 ZSH_HIGHLIGHT_STYLES[path]='none'
49 ZSH_HIGHLIGHT_STYLES[path_prefix]='none'
50fi
51
46bindkey -v 52bindkey -v
47export KEYTIMEOUT=1 53export KEYTIMEOUT=1
48 54