1
0
Fork 0

zsh: Set histignoredups option

This commit is contained in:
Jeremy Kaplan 2021-12-17 18:20:40 -08:00
commit 5da5f3ef5b

View file

@ -1,24 +1,24 @@
#!/usr/bin/env zsh
# Lines configured by zsh-newuser-install
# History
HISTFILE=~/.config/zsh/histfile
HISTSIZE=1000000
SAVEHIST=1000000
DIRSTACKSIZE=100
setopt appendhistory extendedglob nomatch
setopt autopushd pushdsilent pushdtohome histignorespace
setopt appendhistory histignorespace histignoredups
setopt extendedglob nomatch
setopt autopushd pushdsilent pushdtohome
unsetopt beep autocd notify
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
# Completion
zstyle ':completion:*' _expand completer _complete _ignored
zstyle ':completion:*' matcher-list '' 'l:|=* r:|=*' 'm:{[:lower:]}={[:upper:]}' 'r:|[._-]=** r:|=**'
zstyle :compinstall filename "$HOME/.zshrc"
autoload -Uz compinit
compinit
# End of lines added by compinstall
# prompt
autoload -U colors