-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvscode.json
More file actions
28 lines (26 loc) · 728 Bytes
/
vscode.json
File metadata and controls
28 lines (26 loc) · 728 Bytes
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
{
"editor.fontSize": 12,
"editor.fontFamily": "'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.wordWrap": "on",
"editor.lineNumbers": "on",
"editor.matchBrackets": true,
"terminal.integrated.fontSize": 12,
"vim.ignorecase": true,
"vim.smartcase": true,
"vim.hlsearch": true,
"vim.incsearch": true,
"vim.autoindent": true,
"vim.showcmd": true,
"vim.showmodename": true,
"vim.useCtrlKeys": true,
"vim.useSystemClipboard": true,
"vim.leader": "<space>",
"vim.insertModeKeyBindings": [
{
"before": ["j","k"],
"after": ["<Esc>"]
}
]
}