-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
106 lines (106 loc) · 3.56 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
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
101
102
103
104
105
106
{
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"window.zoomLevel": 0,
"editor.fontFamily": "Inconsolata, Monaco, Consolas, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.minimap.enabled": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"explorer.confirmDelete": false,
"npm-intellisense.scanDevDependencies": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitDisabledWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressSupportGitLensNotification": false
},
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"git.autofetch": true,
"git.confirmSync": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.validate.enable": false,
"javascript.validate.enable": false,
"emmet.includeLanguages": {
"twig": "html",
"nunjucks": "html",
"html": "html",
"heml": "html"
},
"indentRainbow.colors": [
"rgba(255,255,255,0.01)",
"rgba(255,255,255,0.03)",
"rgba(255,255,255,0.05)",
"rgba(255,255,255,0.07)"
],
"prettier.eslintIntegration": true,
"prettier.stylelintIntegration": true,
"terminal.integrated.rendererType": "dom",
"files.associations": {
"*.html": "html",
"*.heml": "html",
"*.njk": "nunjucks"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/bower_components": true,
"**/jspm_packages": true,
"**/node_modules": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"material-icon-theme.showWelcomeMessage": false,
"workbench.colorCustomizations": {
"activityBar.background": "#00ae2f",
"activityBar.foreground": "#0a0a0a",
"activityBarBadge.background": "#0a0a0a",
"activityBarBadge.foreground": "#ffffff",
"sideBar.background": "#0a0a0a",
"sideBar.foreground": "#ffffff",
"sideBarSectionHeader.background": "#282828",
"sideBarSectionHeader.foreground": "#ffffff",
"sideBarTitle.foreground": "#444633",
"sideBar.border": "#0a0a0a",
"editor.background": "#0a0a0a",
"editorLineNumber.foreground": "#d8d8d8",
"editorLineNumber.activeForeground": "#00ae2f",
"editorGroupHeader.noTabsBackground": "#0a0a0a",
"editorGroupHeader.tabsBackground": "#0a0a0a",
"tab.activeBackground": "#0a0a0a",
"tab.border": "#0a0a0a",
"tab.activeBorder": "#0a0a0a",
"tab.activeForeground": "#ffffff",
"tab.inactiveBackground": "#282828",
"tab.inactiveForeground": "#ffffff",
"tab.hoverBackground": "#00ae2f",
"tab.hoverBorder": "#0a0a0a",
"terminal.background": "#0a0a0a",
"terminal.border": "#00ae2f",
"terminal.foreground": "#FFFFFF",
"statusBar.background": "#00ae2f",
"statusBar.foreground": "#0a0a0a",
"statusBar.border": "#0a0a0a",
"notifications.background": "#0a0a0a",
"input.background": "#0a0a0a",
"input.foreground": "#FFFFFF"
},
"workbench.colorTheme": "One Dark Pro",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}