ZSH Shell history not working

zsh

I recently switched from bash to zshell but my history does not seem to be working. when I press the up arrow I don't get the previous commands. Is the shortcut different? Also how do I enable shared history through tabs and new windows? I am on Lion, and using the standard Terminal

Best Answer

Add this to your .zshrc:

SAVEHIST=1000  # Save most-recent 1000 lines
HISTFILE=~/.zsh_history
Related Topic