-
Notifications
You must be signed in to change notification settings - Fork 0
/
20190128_vscode
37 lines (37 loc) · 977 Bytes
/
20190128_vscode
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
{
"window.zoomLevel": -1,
"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'",
// Enable/Disable ActiveFileInStatusBar
"ActiveFileInStatusBar.enable": true,
// Show fullpath or relative path in status bar.
"ActiveFileInStatusBar.fullpath": true,
// Reveal the active file in the file system.
"ActiveFileInStatusBar.revealFile": true,
"ActiveFileInStatusBar.color": "white",
"workbench.colorTheme": "Braver's Solarized Dark (themed workbench)",
"[python]": {
"editor.tabSize": 4
},
"[javascript]": {
"editor.tabSize": 2
},
"[jsx]": {
"editor.tabSize": 2
},
"[javascriptreact]": {
"editor.tabSize": 2
},
"[javascript]": {
"prettier.tabWidth": 2
},
"[javascriptreact]": {
"prettier.tabWidth": 2
},
"editor.formatOnSave": true,
"emmet.showSuggestionsAsSnippets": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
// "javascript": "javascriptreact"
},
"[plsql]": {}
}