Skip to content

Instantly share code, notes, and snippets.

@tsuyukimakoto
Created March 20, 2013 08:38
Show Gist options
  • Save tsuyukimakoto/5203191 to your computer and use it in GitHub Desktop.
Save tsuyukimakoto/5203191 to your computer and use it in GitHub Desktop.
my settings
// Place your settings in the file "User/Preferences.sublime-settings", which
// overrides the settings in here.
//
// Settings may also be placed in file type specific options files, for
// example, in Packages/Python/Python.sublime-settings for python files.
{
// Sets the colors used within the text area
//"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_face": "RictyDiminished-Regular",
"font_size": 16,
// Columns in which to display vertical rulers
"rulers": [75],
// Set to true to turn spell checking on by default
"spell_check": true,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
// If enabled, will highlight any line with a caret
"highlight_line": true,
// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": true,
// Set to 0 to disable smooth scrolling. Set to a value between 0 and 1 to
// scroll slower, or set to larger than 1 to scroll faster
"scroll_speed": 0,
// Controls side bar animation when expanding or collapsing folders
"tree_animation_enabled": false,
// Controls animation throughout the application
"animation_enabled": false,
// Makes tabs with modified files more visible
"highlight_modified_tabs": true,
// Show folders in the side bar in bold
"bold_folder_labels": true,
// Valid values are "system", "enabled" and "disabled"
"overlay_scroll_bars": "disabled",
// OS X only: This controls if an empty window is created at startup or not.
"create_window_at_startup": false,
// 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"],
"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.sublime-workspace"],
// These files will still show up in the side bar, but won't be included in
// Goto Anything or Find in Files
"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment