-
Notifications
You must be signed in to change notification settings - Fork 3
/
QuickThemes.sublime-settings
100 lines (92 loc) · 3.41 KB
/
QuickThemes.sublime-settings
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
// This is the list of themes you want to cycle through.
// You should leave this version of the list alone and setup your own in
// the user settings file via:
// Preferences -> Package Settings -> QuickThemes -> Settings - User
// Remember when adding color schemes from your user package dir to add the
// relative path and file name.
// Below will cycle through all default themes but this plugin works best
// with two or three themes.
// I use a muted, high contrast, and bright theme to match my environments.
// quick_themes_selection:
// The index of the currently selected theme.
"quick_themes_selection": 0,
// quick_themes_defaults:
// QuickThemes will check this list for default settings if a theme
// does not explicitly include them. QuickThemes will not modify
// settings that are not included in this list (i.e. every desired
// setting must have a default value, or it will be ignored.)
"quick_themes_defaults": {
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_face": "Menlo",
"font_size": 12
},
// quick_themes:
// List of themes. The empty first theme provides access to defaults.
"quick_themes": [
{}, // use defaults!
{
"color_scheme": "Packages/Color Scheme - Default/Amy.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Blackboard.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Dawn.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Eiffel.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Espresso Libre.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/IDLE.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/LAZY.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Mac Classic.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/MagicWB (Amiga).tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Pastels on Dark.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Slush & Poppies.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/SpaceCadet.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Sunburst.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/Zenburnesque.tmTheme"
},
{
"color_scheme": "Packages/Color Scheme - Default/iPlastic.tmTheme"
}
]
}