-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
46 lines (46 loc) · 1.37 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
{
"workbench.iconTheme": "eq-material-theme-icons-ocean",
"editor.fontLigatures": true,
"explorer.openEditors.visible": 0,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#FF2C70",
"titleBar.inactiveBackground": "#FF2C70CC"
},
"workbench.colorTheme": "Cobalt2",
"editor.fontFamily": "Fira Code",
"editor.lineHeight": 20,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"vscode_custom_css.imports": [
"/Users/djbotha/dev/dotfiles/.vscodestyles.css"
],
"editor.renderWhitespace": "all",
"window.zoomLevel": 0,
"todohighlight.isEnable": true,
"todohighlight.keywords": [
"TODO",
"FIXME"
],
"explorer.compactFolders": false,
"vim.useSystemClipboard": true,
"editor.formatOnSave": true, // Run vscode formatter on save for all projects
"[javascript]": {
"editor.formatOnSave": false // Don't use vscode formatter on save for js
},
"[javascriptreact]": {
"editor.formatOnSave": false // Don't use syvscode formatter on save for jsx
},
// Run the ESLint plugin on save
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.tabSize": 2
}