Add some new modules and extend history size

This commit is contained in:
Harry Green 2020-01-10 14:55:15 +13:00 committed by Harry Green
parent f4e1f01c85
commit 66a69a0dd9
2 changed files with 9 additions and 2 deletions

View file

@ -41,8 +41,9 @@ zstyle ':prezto:load' pmodule \
'completion' \
'history-substring-search' \
'prompt' \
'syntax-highlighting'
'syntax-highlighting' \
'fasd' \
'autosuggestions'
#
# Autosuggestions
#

View file

@ -10,6 +10,12 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# History configuration
HISTSIZE=1000000
SAVEHIST=1000000
setopt HIST_IGNORE_ALL_DUPS # ignore duplicated commands history list
setopt SHARE_HISTORY # share command history data between sessions
alias h="cd ~"
alias p="cd ~/projects"
alias v="vagrant"