Robert's Configuration dotfiles
- Editor: Sublime
- ZSH: Oh My Zsh
- Terminal: iTerm
- Theme: Solarized Dark theme
- Font: Source Code Pro Powerline Patched
brew cask install iterm2
Recommended Theme
- Solarized Dark theme (patched version to fix the bright black value)
URL: https://github.com/robbyrussell/oh-my-zsh
Install:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
Update ~/.zshrc with ZSH_THEME="powerlevel9k/powerlevel9k".
My ~/.zshrc inlcudes my preferred Powerlevel prompt styling. See other options here
Additionally, see what other users are doing here.
Download and install a patched Powerline font or download the patched source code pro font in the fonts directory.
Set the font in iTerm (iTerm → Preferences → Profiles → Text → Change Font → Source Code Pro); restart iTerm.
1. Create a directory at ~/bin
mkdir ~/bin
2. Copy sublime to the newly created ~/bin directory
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl
3. Add the following to your ~/.zshrc file
export PATH=$PATH:$HOME/bin
NOTE: My included
.zshrcalready includes this
4. Set sublime as your default editor in your ~/.zshrc file
export EDITOR='subl'
export VISUAL='subl'
NOTE: My included
.zshrcalready includes this
5. Restart terminal and test the sublime command
subl ~/.zshrc
If your .zshrc file opens in Sublime you are good to go!
Source and additional resources for Sublime setup can be found here: https://gist.github.com/barnes7td/3804534
View my package list or generate your own package list:
apm list --installed --bare > package-list.txt
Import my list using:
apm install --packages-file ./package-list.txt