Created
July 12, 2012 17:52
-
-
Save yvesvanbroekhoven/3099644 to your computer and use it in GitHub Desktop.
My Sublime Text 2 settings
This file contains hidden or 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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme", | |
// Note that the font_face and font_size are overriden in the platform | |
// specific settings file, for example, "Preferences (Linux).sublime-settings". | |
// Because of this, setting them here will have no effect: you must set them | |
// in your User File Preferences. | |
"font_face": "Monaco", | |
"font_size": 12, | |
// If enabled, will highlight any line with a caret | |
"highlight_line": true, | |
// The number of spaces a tab is considered equal to | |
"tab_size": 2, | |
// Set to true to insert spaces when tab is pressed | |
"translate_tabs_to_spaces": true, | |
// Set to true to removing trailing white space on save | |
"trim_trailing_white_space_on_save": false, | |
// Set to true to ensure the last line of the file ends in a newline | |
// character when saving | |
"ensure_newline_at_eof_on_save": false, | |
// Show folders in the side bar in bold | |
"bold_folder_labels": false, | |
// Set to false to hide the gutter altogether | |
"gutter": true, | |
// Columns in which to display vertical rulers | |
"rulers": [80], | |
// folder_exclude_patterns and file_exclude_patterns control which files | |
// are listed in folders on the side bar. These can also be set on a per- | |
// project basis. | |
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", ".sass-cache"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment