-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
39 lines (38 loc) · 1.44 KB
/
settings.json
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
{
"workbench.colorTheme": "Monokai Pro",
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"workbench.colorCustomizations": {
"[Monokai Pro]": {
"editor.background": "#0c0c0c",
"sideBar.background": "#1B1B1D",
"sideBarSectionHeader.background": "#1B1B1D",
"statusBar.background": "#1B1B1D",
"statusBar.foreground": "#21CE99",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#263238",
"tab.activeBackground": "#1B1B1D",
"tab.unfocusedInactiveForeground": "#d1d1d8",
"tab.inactiveForeground": "#d1d1d8",
"tab.activeBorder": "#21CE99",
"tab.inactiveBackground": "#1B1B1D",
"tab.activeForeground": "#d1d1d8",
"editorGroupHeader.tabsBackground": "#1B1B1D",
"titleBar.activeBackground": "#1B1B1D",
"titleBar.activeForeground": "#259472",
"editorLineNumber.foreground": "#4e4e53",
"editorLineNumber.activeForeground": "#259472",
"editorGutter.background": "#0c0c0c"
},
},
"files.autoSave": "afterDelay",
"python.venvPath": "~/.virtualenvs",
"python.autoComplete.extraPaths": [
".../backend/venv"
],
"python.analysis.extraPaths": [
".../backend/venv"
]
}