-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvs-code-settings.json
More file actions
60 lines (60 loc) · 1.68 KB
/
vs-code-settings.json
File metadata and controls
60 lines (60 loc) · 1.68 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
{
"files.autoSave": "afterDelay",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.editor.enablePreview": false,
"python.jediEnabled": false,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"breadcrumbs.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 200,
"editor.minimap.showSlider": "always",
"editor.renderWhitespace": "all",
"editor.smoothScrolling": true,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"files.trimTrailingWhitespace": true,
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<space>", "<space>"],
"commands": [":"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
">"
],
"commands": [
"editor.action.indentLines"
]
},
{
"before": [
"<"
],
"commands": [
"editor.action.outdentLines"
]
},
],
"workbench.colorTheme": "Dark+ Material",
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#75757581"
},
"editor.renderLineHighlight": "line",
}