Skip to content

Instantly share code, notes, and snippets.

@ciarand
Created July 25, 2013 23:06
Show Gist options
  • Save ciarand/6084612 to your computer and use it in GitHub Desktop.
Save ciarand/6084612 to your computer and use it in GitHub Desktop.
Preferences.sublime-settings
{
// Thou shalt work with a real color scheme
"color_scheme": "Packages/Solarized Color Scheme/Solarized (light).tmTheme",
// But use classy tabs
"soda_classic_tabs": true,
// And the latest Soda theme
"theme": "Soda Light 3.sublime-theme",
// And thy font face shall be a robot
"font_face": "Droid Sans Mono",
// A fancy robot
"font_options": ["subpixel_antialias"],
// A reasonably sized robot
"font_size": 12.0,
"fade_fold_buttons": false,
// And thou shalt see line numbers
"gutter": true,
// With a small margin because lots of space
"margin": 0,
// Highlighting the line is good for showing off
"highlight_line": true,
// And ain't nobody got time for 1.0
"scroll_speed": 2.0,
// But we do need a blue dot
"highlight_modified_tabs": true,
// And bold folder labels are dumb
"bold_folder_labels": false,
// But we do know how to manage windows
"create_window_at_startup": false,
// Thou shalt ignore Vi mode
"ignored_packages": ["Vintage"],
// Turn atomic save off 'cause it breaks some encoding sometimes
"atomic_save": false,
// Use the tab button unchanged
"use_tab_stops": true,
// Tabs should be spaces tho
"translate_tabs_to_spaces": true,
// And thus they should be 4 spaces wide
"tab_size": 4,
// And that number shall be unchanging
"detect_indentation": false,
// And those lines shall end with a LF
"default_line_ending": "unix",
// Which shall not be preceeded by whitespace
"trim_trailing_white_space_on_save": true,
// And thou shalt not drageth text
"drag_text": false,
// And all files shall end with a blank line
"ensure_newline_at_eof_on_save": true,
// Or use an inefficient full screen mode
"use_simple_full_screen": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment