Created
April 4, 2015 02:35
-
-
Save eevmanu/78177157092cccf711e3 to your computer and use it in GitHub Desktop.
User preferences for sublime text 3
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
{ | |
// Colors | |
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme", | |
"theme": "Soda Dark 3.sublime-theme", | |
// Font | |
"font_face": "Ubuntu Mono", | |
// "font_face": "Meslo LG L", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 16, | |
"line_padding_bottom": 0, | |
"line_padding_top": 0, | |
// Cursor style - no blinking and slightly wider than default | |
"caret_style": "solid", | |
"wide_caret": true, | |
// Editor view | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"draw_minimap_border": true, | |
"highlight_line": true, | |
"indent_guide_options": | |
[ | |
"draw_active", | |
"draw_normal" | |
], | |
"soda_classic_tabs": true, | |
"soda_folder_icons": true, | |
"draw_white_space": "all", | |
// "fold_buttons": false, | |
// Editor behavior | |
"highlight_modified_tabs": true, | |
"indent_to_bracket": true, | |
"shift_tab_unindent": true, | |
// Word wrapping | |
"rulers": [ 79, 80 ], | |
"word_wrap": true, | |
"wrap_width": 80, | |
// Whitespace - no tabs, trimming, end files with \n | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"ensure_newline_at_eof_on_save": true, | |
// Sidebar - exclude distracting files and folders | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"__pycache__" | |
], | |
"index_exclude_patterns": | |
[ | |
"*.log", | |
"/home/Downloads/*" | |
], | |
// Behavior | |
"enable_telemetry": false, // dont send data usage tu sublime | |
"preview_on_click": false, | |
"show_panel_on_build": false, | |
// Anaconda settings | |
"pep8_ignore": [ "E501" ], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment