feat(zsh): limit zsh history to 100
This commit is contained in:
parent
a15ae06486
commit
e37c74db15
|
@ -1,5 +1,6 @@
|
||||||
# zsh history file
|
# zsh history file
|
||||||
export HISTFILE="$XDG_STATE_HOME/zsh/history"
|
export HISTFILE="$XDG_STATE_HOME/zsh/history"
|
||||||
|
export HISTSIZE=100
|
||||||
|
|
||||||
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc.
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc.
|
||||||
# Initialization code that may require console input (password prompts, [y/n]
|
# Initialization code that may require console input (password prompts, [y/n]
|
||||||
|
|
Loading…
Reference in New Issue