-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
49 lines (49 loc) · 1.12 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
{
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindings": [
{
"before": ["B"],
"after": ["^"]
},
{
"before": ["E"],
"after": ["$"]
},
{
"before": [";"],
"after": [":"]
}
],
"vim.smartRelativeLine": false,
"editor.fontSize": 12,
"search.useIgnoreFiles": false,
"php.executablePath": "/usr/bin/php",
"php.suggest.basic": false,
"editor.tabSize": 4,
"editor.cursorStyle": "line",
"editor.insertSpaces": false,
"editor.lineNumbers": "on",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"window.restoreWindows": "none",
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[typescript]": {
"editor.tabSize": 4
},
"[javascript]": {
"editor.tabSize": 4
},
"[json]": {
"editor.tabSize": 4
},
}