-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser_settings
More file actions
35 lines (27 loc) · 1.25 KB
/
User_settings
File metadata and controls
35 lines (27 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
// Columns in which to display vertical rulers
"rulers": [100],
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
// Set to true to draw a border around the visible rectangle on the minimap.
// The color of the border will be determined by the "minimapBorder" key in
// the color scheme
"draw_minimap_border": true,
// Always visualise the viewport on the minimap, as opposed to only
// showing it on mouse over
"always_show_minimap_viewport": true,
// 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",
// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": true,
// Set to true to ensure the last line of the file ends in a newline
// character when saving
"ensure_newline_at_eof_on_save": true,
// Makes tabs with modified files more visible
"highlight_modified_tabs": true,
// Show folders in the side bar in bold
"bold_folder_labels": true
}