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
36
37
38
39
40
41
42
43
44
45
|
Personal configuration for the text editor Sublime Text ([https://www.sublimetext.com/](sublimetext.com/))
## Themes / Color Schemes
* Theme: Default
* Color scheme is set to `auto`:
* Light scheme: `Breakers`
* Dark scheme: `Dracula`
## Plugins
* BracketHighlighter
* Copy Relative Path
* Dracula Color Scheme
* Emmet
* Package Control
## Settings
{
"ignored_packages":
[
"Vintage",
],
"color_scheme": "auto",
"dark_color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme",
"light_color_scheme": "Packages/Colorsublime - Themes/Butterfly.tmTheme",
"font_face": "JetBrains Mono NL",
"font_size": 14,
"line_padding_top": 3,
"line_padding_bottom": 3,
"highlight_line": true,
"word_wrap": true,
"dark_theme": "Default Dark.sublime-theme",
"light_theme": "Default.sublime-theme",
"tab_size": 2,
"theme": "auto",
"index_files": true,
"show_definitions": false,
"show_full_path": true,
/*"tab_size": 2,*/
"translate_tabs_to_spaces": true,
}
|