-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
61 lines (61 loc) · 1.63 KB
/
settings.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
{
"editor.minimap.enabled": false,
"terminal.integrated.shell.windows": "C:\\Users\\Mihai\\scoop\\apps\\git\\current\\bin\\bash.exe",
"window.zoomLevel": 0,
"todo-tree.tree.showScanModeButton": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tabSize": 2,
"[typescript]": {},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.snippetSuggestions": "top",
"window.menuBarVisibility": "toggle",
"workbench.activityBar.visible": true,
"breadcrumbs.enabled": false,
"workbench.statusBar.visible": true,
"vim.normalModeKeyBindings": [
{
"before": [ "<leader>", "<leader>", "p" ],
"commands": [
"workbench.action.showCommands",
]
},
{
"before": [ "Tab" ],
"commands": [
"editor.toggleFold",
]
},
{
"before": [ "H" ],
"commands": [
"workbench.action.navigateBack",
]
},
{
"before": [ "L" ],
"commands": [
"workbench.action.navigateForward",
]
},
{
"before": [ "Enter" ],
"commands": [
"editor.action.revealDefinition",
]
},
],
"vim.camelCaseMotion.enable": true,
"vim.easymotion": true,
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
}
}