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 |
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
| " ============================================================================= | |
| " ~/.vimrc — pragmatic config for Unix / Ruby / Python / Julia / Node / Make | |
| " No plugins required for base functionality. Optional plug block at the end. | |
| " ============================================================================= | |
| set nocompatible | |
| set encoding=utf-8 | |
| scriptencoding utf-8 | |
| syntax on | |
| filetype plugin indent on |
OlderNewer