dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.config/zsh/options.zsh

47 lines
996 B
Bash

export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help"
HISTFILE="$HOME/.config/zsh/histfile"
HISTSIZE=10000
SAVEHIST=50000
unsetopt beep
unsetopt nomatch
unsetopt menucomplete
unsetopt flowcontrol
unsetopt correctall
setopt NOCLOBBER
setopt completealiases
setopt autocd
setopt autoresume
setopt equals
setopt magic_equal_subst
setopt brace_ccl
setopt extended_history
setopt appendhistory
setopt hist_expire_dups_first
setopt hist_ignore_all_dups
setopt hist_ignore_space
setopt hist_reduce_blanks
setopt hist_verify
setopt hist_expand
setopt inc_append_history
setopt share_history
setopt mark_dirs
setopt RM_STAR_WAIT
setopt interactivecomments
setopt rcexpandparam
setopt correct
setopt glob_complete
setopt extendedglob
setopt nocaseglob
setopt nocheckjobs
setopt numericglobsort
setopt printeightbit
setopt auto_list
setopt auto_param_slash
setopt auto_param_keys
setopt auto_name_dirs
setopt always_to_end
setopt complete_in_word
setopt list_types
HELPDIR=/usr/share/zsh/$ZSH_VERSION/help