This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # history settings | |
| HISTSIZE=10000 # lines kept in memory | |
| SAVEHIST=10000 # lines saved to disk | |
| # make ZSH history behave like bash's history: | |
| alias history='fc -l -${HISTSIZE}' | |
| alias ll="ls -aslFh" | |
| export EDITOR="/usr/local/bin/mate -w" | |
| # Homebrew Ruby |
OlderNewer