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
|
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.jediEnabled": false,
"editor.fontFamily": "'Hack', 'Monaco', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 18,
"terminal.integrated.fontFamily": "Hack",
"terminal.integrated.fontSize": 18,
"editor.lineNumbers": "relative",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.idea": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.ropeproject": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/*.egg-info": true,
"**/.tox": true,
"**/.coverage": true,
"**/skip-covered": true,
"**/pip-wheel-metadata": true,
"**/prof": true,
"**/tags": true,
},
"vim.enableNeovim": true,
"vim.neovimPath": "/usr/bin/nvim",
"vim.hlsearch": true,
"vim.leader": "\\",
"vim.visualstar": true,
"vim.handleKeys": {
"<C-d>": true,
"<C-b>": false,
"<C-r>": false,
"<C-k>": false,
},
"vim.searchHighlightColor": "#f93005",
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [">"],
"commands": ["editor.action.indentLines"]
},
{
"before": ["<"],
"commands": ["editor.action.outdentLines"]
},
],
"editor.renderWhitespace": "none",
"editor.dragAndDrop": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"go.formatTool": "goimports"
}
|