- OSX defaults: https://gist.github.com/meleyal/5890865
- Terminal next/previous tab shorcuts: http://hints.macworld.com/article.php?story=20071030192108181
- Sync Sublime Text 2 settings with Dropbox: https://coderwall.com/p/s1vdtw
- Chrome
- 1Password
| a |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| # based on http://git.io/hpl2Gw | |
| linters: | |
| PropertySortOrder: | |
| order: | |
| - position | |
| - top | |
| - right | |
| - bottom | |
| - left |
| gulp = require 'gulp' | |
| shell = require 'gulp-shell' | |
| livereload = require 'gulp-livereload' | |
| watchify = "watchify | |
| app/assets/javascripts/initialize.coffee | |
| --outfile app/assets/javascripts/bundle.js | |
| --extension='.coffee' | |
| --transform coffeeify | |
| --transform debowerify |
| wget -q --mirror -p --html-extension -e robots=off --base=./ -k -P ./ http://example.com |
| [ | |
| { "keys": ["ctrl+shift+."], "command": "erb" }, | |
| { "keys": ["ctrl+super+r"], "command": "reveal_in_side_bar" }, | |
| { "keys": ["super+j"], "command": "swap_line_down" }, | |
| { "keys": ["super+k"], "command": "swap_line_up" }, | |
| { "keys": ["Y"], "command": "clipboard_copy", | |
| "context": [{"key": "clipboardcopy_fake", "operator":"equal", "operand":true}, {"key": "setting.command_mode"}] | |
| }, | |
| { "keys": ["y"], "command": "clipboard_copy", | |
| "context": [{"key": "clipboardcopy_fake", "operator":"equal", "operand":true}, {"key": "setting.command_mode"}] |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>GitHub</string> | |
| <key>settings</key> | |
| <array><dict><key>name</key><string>mon_color</string><key>scope</key><string>mcol_999988FF</string><key>settings</key><dict><key>background</key><string>#999988FF</string><key>caret</key><string>#000000FF</string><key>foreground</key><string>#000000FF</string></dict></dict> | |
| <dict><key>name</key><string>mon_color</string><key>scope</key><string>mcol_666666FF</string><key>settings</key><dict><key>background</key><string>#666666FF</string><key>caret</key><string>#FFFFFFFF</string><key>foreground</key><string>#FFFFFFFF</string></dict></dict> | |
| <dict><key>name</key><string>mon_color</string><key>scope</key><string>mcol_999999FF</string><key>settings</key><dict><key>background</key><string>#999999FF</string><key>caret</key><string>#000000FF</string><key>foreground</key><string>#000000 |
| ## | |
| # OSX defaults, based on http://mths.be/osx | |
| # | |
| # Ask for the administrator password upfront | |
| sudo -v | |
| # Set computer name (as done via System Preferences → Sharing) | |
| sudo scutil --set ComputerName "air" | |
| sudo scutil --set HostName "air" |