Skip to content

Instantly share code, notes, and snippets.

@rjkaes
rjkaes / gist:9367959
Created March 5, 2014 14:16
Basic Configuration for iTerm2 Profile
Install iTerm2 (with tmux support)
Create two profiles, one light and one dark and install the Solarized color schemes: https://github.com/altercation/solarized/tree/master/iterm2-colors-solarized
Install Anonymous Pro http://www.marksimonson.com/fonts/view/anonymous-pro
Configure both profiles to use Anonymous Pro at 24 point (when the Retina display is configured for full resolution.) Adjust horizontal and vertical spacing to suite taste.
In "General" pane, uncheck "Use Lion-style Full Screen"
#!/usr/bin/env ruby
shutdown = false
cnf_path = '/usr/local/etc/my_ramdisk.cnf'
ramdisk_path = '/Volumes/RAMDisk'
loop { case ARGV[0]
when 'shutdown' then ARGV.shift; shutdown = true
else break
end; }
@rjkaes
rjkaes / make-neovim.sh
Last active May 4, 2017 14:06
Upgrading neovim from source or homebrew
function make-neovim () {
if [ $(uname) = "Darwin" ]; then
brew update
brew upgrade neovim/neovim/neovim --fetch-HEAD --cleanup
# brewup && TERM=screen brew install --HEAD neovim
# brewup && TERM=screen brew upgrade neovim
else
cd $HOME/src/neovim && git pull && make CMAKE_BUILD_TYPE=Release && sudo make install
fi
pip2 install --upgrade neovim