-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
113 lines (98 loc) · 3.01 KB
/
vscode-settings.json
File metadata and controls
113 lines (98 loc) · 3.01 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"window.zoomLevel": 0,
"window.titleBarStyle": "custom",
"workbench.startupEditor": "none",
"editor.fontSize": 12,
"editor.fontFamily": "'Fira Code', 'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "line",
"editor.renderIndentGuides": false,
"editor.detectIndentation": true,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"editor.insertSpaces": true,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"scm.alwaysShowProviders": true,
"workbench.statusBar.feedback.visible": false,
"workbench.editor.showTabs": false,
"workbench.sideBar.location": "right",
"terminal.integrated.shell.linux": "/bin/zsh",
"terminal.integrated.fontSize" : 12,
"terminal.integrated.scrollback" : 10000,
"update.channel": "none",
"update.enableWindowsBackgroundUpdates": false,
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"vim.useSystemClipboard": true,
"vim.leader": " ",
"vim.hlsearch": true,
"vim.visualstar": true,
"vim.incsearch": true,
"vim.history": 1000,
"vim.statusBarColorControl": false,
"vim.cursorStylePerMode.insert": "line",
"vim.cursorStylePerMode.visual": "",
"vim.cursorStylePerMode.normal": "line",
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
">"
],
"commands": [
"editor.action.indentLines"
]
},
{
"before": [
"<"
],
"commands": [
"editor.action.outdentLines"
]
},
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["j"],
"after": ["g", "j"]
},
{
"before": ["leader", "h"],
"after": ["<C-w>", "h"]
},
{
"before": ["leader", "q"],
"commands": [
":q",
]
},
{
"before": ["leader", "l"],
"after": ["<C-w>", "l"]
},
{
"before": ["leader", "n"],
"after": [],
"commands": [
{
"command": "workbench.action.quickOpen",
"args": []
}
]
},
],
"python.pythonPath": "${workspaceRoot}/env/bin/python",
"python.linting.pydocstyleEnabled": true,
"workbench.colorCustomizations": {
"statusBar.background": "#212121",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#212121"
},
"breadcrumbs.enabled": true,
"dart.allowAnalytics": false,
}