Created
August 27, 2015 16:43
-
-
Save 0livare/c41a60b3d888e0347fd0 to your computer and use it in GitHub Desktop.
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
{ | |
"added_words": | |
[ | |
"Posten", | |
"Ribbich" | |
], | |
"font_size": 11, | |
"spell_check": true, | |
// When drag_text is enabled, clicking on selected text will begin a | |
// drag-drop operation. This is not currently implemented under Linux. | |
"drag_text": false, | |
// | |
// UI Settings | |
// | |
// Makes tabs with modified files more visible | |
"highlight_modified_tabs": true, | |
// Show folders in the side bar in bold | |
"bold_folder_labels": false, | |
// Columns in which to display vertical rulers | |
"rulers": [80], | |
// If enabled, will highlight any line with a caret | |
"highlight_line": false, | |
// Set to "none" to turn off drawing white space, "selection" to draw only the | |
// white space within the selection, and "all" to draw all white space | |
"draw_white_space": "all", | |
// Always visualise the viewport on the minimap, as opposed to only | |
// showing it on mouse over | |
"always_show_minimap_viewport": true, | |
// Set to false to prevent line numbers being drawn in the gutter | |
"line_numbers": true, | |
// | |
// Indentation Settings | |
// | |
// The number of spaces a tab is considered equal to | |
"tab_size": 4, | |
// Set to true to insert spaces when tab is pressed | |
"translate_tabs_to_spaces": false, | |
// If translate_tabs_to_spaces is true, use_tab_stops will make tab and | |
// backspace insert/delete up to the next tabstop | |
"use_tab_stops": true, | |
// Set to false to disable detection of tabs vs. spaces on load | |
"detect_indentation": true, | |
// Calculates indentation automatically when pressing enter | |
"auto_indent": true, | |
// Controls how the indent guides are drawn, valid options are | |
// "draw_normal" and "draw_active". draw_active will draw the indent | |
// guides containing the caret in a different color. | |
"indent_guide_options": ["draw_active"], | |
// Makes auto indent a little smarter, e.g., by indenting the next line | |
// after an if statement in C. Requires auto_indent to be enabled. | |
"smart_indent": true, | |
// Adds whitespace up to the first open bracket when indenting. Requires | |
// auto_indent to be enabled. | |
"indent_to_bracket": 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, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment