We may earn money or products from the companies mentioned in this post. 
Thank you for helping to support my work!
I recently installed an SSD in the MacPro 1,1. Instead of cloning my current OS to it, I opted to start fresh. Since many of these tools need XYZ before you can install them this it the order I went. It took a few days and I’ve not migrated any of my data (address book, config files, email).
I’m running 10.6.8 until I can get a new video card, new processors, flash the EFI, and install Mavericks. Because of this there are things missing from this list (RVM, Bower, node.js, grunt, and jekyll to name a few off the top of my head) that I will add to later. published March 30, 2015
- Enable TRIM
- rename to wednesday
- Move home folder to /Volumes/Data/
- Install Firefox
- Move Firefox cache to /Volumes/Data/firefox_temp
- Move Downloads to /Volunes/Data/Downloads
- Install firebug
- Install colorzilla
- Install iWork
- Install CS3
- Mac RDC
- Transmit
- 1Password
- Dropbox
- Inconsolata font
- uTorrent
- Postbox
- Komodo edit
- Linkinus
- TextExpander
- Xcode
- Iterm
- Git
- iTerm
- git clone git://github.com/stephenway/monokai.terminal.git
- Homebrew
- Fish shell
- set PATH /usr/local/bin $PATH
- Macvim
- brew install macvim --with-override-system-vim
- brew linkapps macvim
- git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
- mvim ~/.vimrc
set nocompatible              " be iMproved, required
filetype off                  " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
Plugin 'ap/vim-css-color'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-repeat'
Plugin 'lsdr/monokai'
" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
set number
colorscheme monokai
:PluginInstall
 
						