-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
79 lines (79 loc) · 2.04 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
{
"workbench.commandPalette.preserveInput": true,
"workbench.startupEditor": "newUntitledFile",
"emmet.triggerExpansionOnTab": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.cursorSurroundingLines": 999,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.minimap.enabled": false,
"editor.fontFamily": "'Consolas Ligaturized',Consolas,'Courier New', monospace",
"editor.fontSize": 12,
"editor.fontLigatures": "'ss02'",
// "editor.fontLigatures": true,
"editor.accessibilitySupport": "off",
"editor.defaultFormatter": null,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.format.enable": true,
"[javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" },
"[html, css]": {
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": ["document"],
"editor.defaultFormatter": "HookyQR.beautify"
},
// vim
"vim.easymotion": true,
"vim.hlsearch": true,
"vim.highlightedyank.enable": true,
"vim.useSystemClipboard": true,
"vim.visualstar": true,
"vim.easymotionMarkerForegroundColorOneChar": "#F88070",
"vim.easymotionMarkerForegroundColorTwoCharFirst": "#F88070",
"vim.easymotionMarkerForegroundColorTwoCharSecond": "#F88070",
"vim.easymotionMarkerBackgroundColor": "#474747",
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
},
{
"before": ["k", "j"],
"after": ["<Esc>"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["v"],
"after": ["<Esc>"]
},
{
"before": [">"],
"commands": ["editor.action.indentLines"]
},
{
"before": ["<"],
"commands": ["editor.action.outdentLines"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["leader", "<CR>"],
"commands": [":nohl"]
},
{
"before": ["Y"],
"after": ["y", "$"]
},
{
"before": ["H"],
"after": ["^"]
},
{
"before": ["L"],
"after": ["$"]
}
]
}