##Alistair's OS X Setup
###OS X Interaction Setup
####Setup Trackpad
Goto: Apple > System Preferences > TrackPad > Point & Click
- [✘] Swipe between pages
- [✔] Tap to click
- [✔] Three finger drag
##Alistair's OS X Setup
###OS X Interaction Setup
####Setup Trackpad
Goto: Apple > System Preferences > TrackPad > Point & Click
| [user] | |
| name = Alexander Rinass | |
| email = alex@rinass.net | |
| [core] | |
| editor = mate -w | |
| [github] | |
| user = alexrinass | |
| [color] | |
| branch = auto | |
| diff = auto |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Monokai</string> | |
| <key>settings</key> | |
| <array> | |
| <dict> | |
| <key>settings</key> |
| { | |
| "high_visibility_enabled_by_default": false, | |
| "align_content_highlight_bar": true, | |
| "content_highlight_bar": true, | |
| "align_content_highlight_bar": true, | |
| // "high_visibility_style": "solid", | |
| "bracket_styles": { | |
| "default": { | |
| "icon": "dot", |
| { | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
| "font_face": "Source Code Pro Light", | |
| "font_size": 18, | |
| "highlight_line": true, | |
| "ignored_packages": | |
| [ | |
| "Markdown", | |
| "Vintage" |
| [ | |
| { "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}} | |
| ] |
| { | |
| // "color_scheme": "Packages/PlainTasks/tasks-dark.hidden-tmTheme" | |
| "color_scheme": "Packages/PlainTasks/tasks-solarized-dark.hidden-tmTheme", | |
| "font_face": "Source Code Pro Light", | |
| "font_size": 16 | |
| } |
| { | |
| "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme", | |
| // "draw_centered": true, | |
| // "word_wrap": true, | |
| "draw_centered": false, | |
| "word_wrap": false, | |
| "wrap_width": 60, | |
| "rulers": [100], | |
| // "font_face": "Josefin Slab Light", |
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.zshrc | |
| . ~/.zshrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |