Last active
August 29, 2015 13:56
-
-
Save dobsondev/9137082 to your computer and use it in GitHub Desktop.
My personal settings for Sublime Text 2.
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
{ | |
// The default font size is 10 which is a little small for me | |
"font_size": 12.0, | |
// 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": true, | |
// Disables horizontal scrolling if enabled. | |
// May be set to true, false, or "auto", where it will be disabled for | |
// source code, and otherwise enabled. | |
"word_wrap": true, | |
// By default, shift+tab will only unindent if the selection spans | |
// multiple lines. When pressing shift+tab at other times, it'll insert a | |
// tab character - this allows tabs to be inserted when tab_completion is | |
// enabled. Set this to true to make shift+tab always unindent, instead of | |
// inserting tabs. | |
"shift_tab_unindent": true, | |
// When drag_text is enabled, clicking on selected text will begin a | |
// drag-drop operation | |
"drag_text": false, | |
// OS X 10.7 only: Set to true to disable Lion style full screen support. | |
// Sublime Text must be restarted for this to take effect. | |
"use_simple_full_screen": true, | |
// Exiting the application with hot_exit enabled will cause it to close | |
// immediately without prompting. Unsaved modifications and open files will | |
// be preserved and restored when next starting. | |
// | |
// Closing a window with an associated project will also close the window | |
// without prompting, preserving unsaved changes in the workspace file | |
// alongside the project. | |
"hot_exit": false, | |
// remember_open_files makes the application start up with the last set of | |
// open files. Changing this to false will have no effect if hot_exit is | |
// true | |
"remember_open_files": false, | |
// OS X only: When files are opened from finder, or by dragging onto the | |
// dock icon, this controls if a new window is created or not. | |
"open_files_in_new_window": false, | |
// List any packages to ignore here. When removing entries from this list, | |
// a restart may be required if the package contains plugins. | |
"ignored_packages": ["Vintage"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment