Skip to content

Commit 31f471a

Browse files
committed
Tweaks
1 parent b92d9e6 commit 31f471a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

chezmoi/dot_config/zsh/private_dot_zshrc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ zstyle ':z4h:direnv' enable 'no' # Disable dire
2121
zstyle ':z4h:ssh:*' enable 'no' # The default value if none of the overrides above match the hostname.
2222
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.
2323
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.
2526

2627
# Disable on codespaces as they are never used
2728
if [ $CODESPACES ]; then
@@ -224,6 +225,7 @@ setopt no_auto_menu # require an extra TAB press to open the completio
224225
setopt inc_append_history # Append immediately rather than only at exit
225226
setopt hist_no_store # Don't store history or fc commands
226227
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.
227229
setopt combining_chars # Combine zero-length punctuation characters (accents) with the base character.
228230
setopt rc_quotes # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'.
229231
unsetopt mail_warning # Don't print a warning message if a mail file has been accessed.
@@ -260,9 +262,7 @@ compdef _directories md
260262
z4h source "$HOME/.secrets"
261263
z4h source /etc/grc.zsh # Colourize all the other things
262264
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`
266266

267267
unfunction _exists
268268

0 commit comments

Comments
 (0)