@@ -21,7 +21,8 @@ zstyle ':z4h:direnv' enable 'no' # Disable dire
21
21
zstyle ':z4h:ssh:*' enable 'no' # The default value if none of the overrides above match the hostname.
22
22
zstyle ':z4h:' start-tmux 'no' # Don't download and start tmux-related stuff as I really don't seem to gain much benefit from this.
23
23
zstyle ':z4h:fzf-history' fzf-flags --no-preview # Disable history preview and limit height
24
- #zstyle ':z4h:*' fzf-command fzf # Use fzf in PATH
24
+ # zstyle ':z4h:*' fzf-command fzf # Use fzf in PATH
25
+ # zstyle ':z4h:' term-shell-integration 'yes' # Mark up shell's output with semantic information.
25
26
26
27
# Disable on codespaces as they are never used
27
28
if [ $CODESPACES ]; then
@@ -224,6 +225,7 @@ setopt no_auto_menu # require an extra TAB press to open the completio
224
225
setopt inc_append_history # Append immediately rather than only at exit
225
226
setopt hist_no_store # Don't store history or fc commands
226
227
setopt hist_ignore_all_dups # Remove older event if new event is duplicate.
228
+ setopt hist_ignore_space # Don't store commands starting with a space.
227
229
setopt combining_chars # Combine zero-length punctuation characters (accents) with the base character.
228
230
setopt rc_quotes # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'.
229
231
unsetopt mail_warning # Don't print a warning message if a mail file has been accessed.
@@ -260,9 +262,7 @@ compdef _directories md
260
262
z4h source "$HOME/.secrets"
261
263
z4h source /etc/grc.zsh # Colourize all the other things
262
264
z4h source -- ${HOMEBREW_PREFIX:+$HOMEBREW_PREFIX/etc/grc.zsh} # Colourize all the other things
263
- if _exists mise; then
264
- z4h source -- "$XDG_CONFIG_HOME/mise/activate.zsh" # Generated by running `mise activate zsh`
265
- fi
265
+ _exists mise && z4h source -- "$XDG_CONFIG_HOME/mise/activate.zsh" # Generated by running `mise activate zsh`
266
266
267
267
unfunction _exists
268
268
0 commit comments