Skip to content

Instantly share code, notes, and snippets.

@gbertb
Forked from stilist/Default (OSX).sublime-keymap
Created October 15, 2012 22:10
Show Gist options
  • Save gbertb/3895912 to your computer and use it in GitHub Desktop.
Save gbertb/3895912 to your computer and use it in GitHub Desktop.
Sublime Text 2 preferences
[
// Drawn from http://www.sublimetext.com/forum/viewtopic.php?f=2&t=7477#p31755
// Kills the annoying default of cmd-left jumping to the start of a line's
// code, rather than column 0.
{ "keys": ["super+left"], "command": "move_to", "args": {"to": "hardbol", "extend": false} },
{ "keys": ["super+right"], "command": "move_to", "args": {"to": "hardeol", "extend": false} }
]
{
// via Package Control
"theme": "Soda Dark.sublime-theme",
// https://github.com/stilist/Harvest-Twilight-theme
"color_scheme": "Packages/User/Harvest twilight.tmTheme",
// http://cm-unicode.sourceforge.net
"font_face": "CMUTypewriter-Regular",
// Have to boost quite a bit.
"font_size": 16,
// default: just the gutter
"highlight_line": true,
// similar to TextMate's 'Show Invisibles'
"draw_white_space": "all",
// General niceties
"tab_size": 2,
"rulers": [80],
"highlight_modified_tabs": true,
"scroll_past_end": false,
"folder_exclude_patterns": [
// version control
".svn", ".git", ".hg", "CVS",
// assets
".sass-cache",
// dependencies
"vendor/gems", ".bundle",
"log"
],
// Un-disable vi mode; why not
"ignored_packages": [],
"installed_packages": [
"CoffeeScript",
"Haml",
"LESS",
"SCSS"
],
// Things that annoy me:
// no. why.
"create_window_at_startup": false,
// automatic pairing (e.g. quotes)
"auto_match_enabled": false,
// foldings are dumb and confusing
"fold_buttons": false,
// wrong more than it's right
"smart_indent": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment