-
Notifications
You must be signed in to change notification settings - Fork 3
/
vscode-settings.json
72 lines (72 loc) · 1.9 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
{
"editor.tabSize": 2,
"window.zoomLevel": 0,
"workbench.colorTheme": "Monokai Dimmed",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"gitlens.keymap": "chorded",
"prettier.singleQuote": true,
"vim.leader": "ö",
"vim.handleKeys": {
"<C-d>": true,
"<C-w>": false,
"<C-k>": false,
"<C-b>": false,
"<C-/>": false,
"<C-*>": false,
"<C-+>": false,
"<C-f>": false,
"<C-y>": false,
"<C-J>": false
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["leader", "d"],
"after": [],
"commands": [
{
"command": "editor.action.addSelectionToNextFindMatch",
"args": []
}
]
},
{
"before": ["K"],
"commands": [
"workbench.action.nextEditor"
]
},
{
"before": ["J"],
"commands": [
"workbench.action.previousEditor"
]
}
],
"gitlens.historyExplorer.enabled": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"breadcrumbs.enabled": true,
"elm.makeCommand": "elm-make",
"editor.formatOnSave": true,
"codemetrics.basics.DecorationModeEnabled": false,
"explorer.confirmDelete": false,
"editor.renderWhitespace": "all",
"typescript.updateImportsOnFileMove.enabled": "always",
"window.titleBarStyle": "custom",
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"editor.fontSize": 15,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}