forked from seyhaheng2/ide-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
63 lines (63 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"editor.fontFamily": "OperatorMono Nerd Font, Monaco, 'Courier New', monospace",
// "workbench.colorCustomizations": {
// "statusBar.background": "#5f00af",
// "statusBar.noFolderBackground": "#5f00af",
// "statusBar.debuggingBackground": "#5f00af"
// },
"vim.statusBarColorControl": true,
"vim.statusBarColors": {
"normal": "#005f5f",
"insert": "#5f0000",
"visual": "#5f00af",
"visualline": "#005f87",
"visualblock": "#86592d",
"replace": "#000000"
},
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"window.zoomLevel": -1,
"editor.fontSize": 24,
"editor.renderWhitespace": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"terminal.integrated.fontSize": 17,
"relativePath.ignore": [
"**/node_modules/**",
"**/.meteor/**",
"**/.idea/**",
"**/.gitignore/**",
"**/package/**",
"**/*.dll",
"**/obj/**",
"**/objd/**"
],
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"workbench.iconTheme": "material-icon-theme",
"editor.detectIndentation": true,
"indent_size": 2,
"extensions.ignoreRecommendations": true,
"atomKeymap.promptV3Features": true,
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f"
},
"workbench.colorTheme": "Atom One Dark",
"workbench.startupEditor": "newUntitledFile"
}