Created
December 2, 2011 11:13
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// Preferences -> Key Bindings - User | |
[ | |
// Key for ERB Insert and Toggle Commands package | |
{ "keys": ["ctrl+shift+<"], "command": "erb" } | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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