Skip to content

Instantly share code, notes, and snippets.

@rsierra
Created December 2, 2011 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsierra/1422835 to your computer and use it in GitHub Desktop.
Save rsierra/1422835 to your computer and use it in GitHub Desktop.
Sublide Text File Settings User (in ~/Library/Application Support/Sublime Text 2/Packages/User)
// Preferences -> Key Bindings - User
[
// Key for ERB Insert and Toggle Commands package
{ "keys": ["ctrl+shift+<"], "command": "erb" }
]
// Preferences of Git Package
{
// save before running commands
"save_first": true,
// if present, use this command instead of plain "git"
// e.g. "/Users/kemayo/bin/git" or "C:\bin\git.exe"
"git_command": "/usr/local/git/bin/git"
}
{
"auto_upgrade_last_run": 1329294005,
"installed_packages":
[
"Alignment",
"Clipboard History",
"ERB Insert and Toggle Commands",
"Git",
"HTML5",
"IndentGuides",
"Package Control",
"RubyTest",
"SublimeCodeIntel",
"SublimeTagmatcher",
"SublimeTextGitX",
"SublimeTODO",
"WordHighlight",
"ZenCoding"
]
}
// Settings in here override those in "Default/Base File.sublime-settings", and
// are overridden in turn by file type specific settings. Place your settings
// here, to ensure they're preserved when upgrading.
{
"tab_size": 2,
"trim_trailing_white_space_on_save": true,
"translate_tabs_to_spaces": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment