-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
113 lines (113 loc) · 2.96 KB
/
vscode-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
107
108
109
110
111
112
113
{
"git.enableSmartCommit": true,
"explorer.confirmDragAndDrop": false,
"git.enabled": true,
// "editor.fontFamily": "Avenir Next LT Pro, monospace",
"editor.fontFamily": "Lato",
"editor.fontSize": 16,
"editor.tokenColorCustomizations": {
"[One Dark Pro]": {
"textMateRules": [
{
"scope": "variable.other.constant",
"settings": {
"foreground": "#D19A66"
}
},
{
"name": "[VSCODE-CUSTOM] JS/TS Punctuation Separator Comma",
"scope": [
"source.ts punctuation.separator.comma",
"source.js punctuation.separator.comma",
"source.tsx punctuation.separator.comma"
],
"settings": {
"foreground": "#ABB2BF"
}
},
{
"scope": "variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node",
"settings": {
"foreground": "#ABB2BF"
}
},
{
"scope": "variable.language",
"settings": {
"foreground": "#e06c75"
}
}
]
}
},
"editor.letterSpacing": 0.75,
"search.exclude": {
"**/bower_components": true,
"**/helpers/lodash": true,
"**/node_modules": true,
"**/Pods": true
},
"eslint.packageManager": "yarn",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"javascript.preferences.importModuleSpecifier": "relative",
"[json]": {},
"eslint.alwaysShowStatus": true,
"files.exclude": {
"**/.pyc": true,
"**/AppEntry.bundle": true,
"**/shell-app.bundle": true
},
"terminal.integrated.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.jsxBracketSameLine": true,
"prettier.semi": false,
"prettier.tabWidth": 4,
"prettier.trailingComma": "all",
"prettier.useTabs": true,
"editor.multiCursorModifier": "alt",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.lineNumbers": "relative",
"vim.sneak": true,
"vim.visualModeKeyBindings": [
{
"before": ["p"],
"after": ["p", "g", "v", "y"]
}
],
"editor.autoClosingQuotes": "always",
"editor.autoClosingBrackets": "always",
"gitlens.blame.ignoreWhitespace": true,
"git.autofetch": true,
"files.associations": {
"*.jsx": "javascript"
},
"editor.lineHeight": 22,
"typescript.tsserver.log": "off",
"typescript.tsserver.trace": "messages",
"editor.minimap.enabled": false,
"workbench.editor.enablePreview": false,
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.cursorStyle": "line",
"editor.insertSpaces": false,
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["j"],
"after": ["g", "j"]
},
{
"before": ["k"],
"after": ["g", "k"]
}
],
"window.zoomLevel": -1,
"workbench.enableExperiments": false,
"workbench.colorTheme": "One Dark Pro"
}