ericjarvies
12/11/2016 - 11:47 AM

zshrc

zshrc

autosave;

sudo nano /etc/nanorc

set tempfile

show/hide hidden files;

echo "alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'" >> ~/.zshrc
echo "alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'" >> ~/.zshrc

add colors to ls;

alias ls="ls -G"

add other stuff;

autoload -Uz compinit promptinit colors
compinit
promptinit
colors
prompt clint
autoload -Uz run-help-git
zstyle ':completion:*' rehash true

reload;

source ~/.zshrc