aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-06-09 19:58:37 +0200
committerThomas Schmucker <ts@its1.de>2026-06-09 19:58:37 +0200
commitcf47304c9f96b921ad12faf762574702e7fe562a (patch)
treec67b0d55413b6c2d4a34fb63883b7de0f53c1aff /zsh
parent70c30283b7d96f8afabc8378e167f9adc32d4760 (diff)
downloaddotfiles-cf47304c9f96b921ad12faf762574702e7fe562a.tar.gz
dotfiles-cf47304c9f96b921ad12faf762574702e7fe562a.tar.bz2
dotfiles-cf47304c9f96b921ad12faf762574702e7fe562a.zip
zsh: Pfade werden nicht mehr unterstrichen dargestellt
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zshrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/zsh/zshrc b/zsh/zshrc
index da050c5..53fb25a 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -44,7 +44,10 @@ case "$OSTYPE" in
44 ;; 44 ;;
45esac 45esac
46 46
47ZSH_HIGHLIGHT_STYLES[path]='none' 47if (( ${+ZSH_HIGHLIGHT_STYLES} )); then
48 ZSH_HIGHLIGHT_STYLES[path]='none'
49 ZSH_HIGHLIGHT_STYLES[path_prefix]='none'
50fi
48 51
49bindkey -v 52bindkey -v
50export KEYTIMEOUT=1 53export KEYTIMEOUT=1