-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode-settings-mac.json
53 lines (53 loc) · 1.33 KB
/
vscode-settings-mac.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
{
"arduino.path": "/Applications",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"window.zoomLevel": 0,
"workbench.sideBar.location": "right",
"editor.formatOnSave": false,
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html",
"javascript": "jsx"
},
"vim.easymotion": true,
"vim.sneak": true,
"vim.foldfix": true,
"vim.visualstar": true,
"vim.sneakUseIgnorecaseAndSmartcase": true,
"vim.leader": ",",
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],
"workbench.startupEditor": "newUntitledFile",
"[go]": {},
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"[javascriptreact]": {},
"git.path": "/usr/bin/git",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": true,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Nord",
"editor.multiCursorModifier": "alt",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["K"],
"after": ["g", "t"]
},
{
"before": ["J"],
"after": ["g", "T"]
}
]
}