-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.json
41 lines (40 loc) · 1.12 KB
/
vscode.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
{
"editor.cursorBlinking": "solid",
"window.zoomLevel": 0,
"editor.fontSize": 16,
"editor.renderWhitespace": "boundary",
"vim.leader": ",",
"vim.searchHighlightColor": "rgba(150, 150, 255, 0.3)",
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.useSolidBlockCursor": true,
"editor.fontFamily": "DejaVu Sans Mono for Powerline",
"editor.rulers": [
80
],
"editor.autoClosingBrackets": false,
"vim.otherModesKeyBindingsNonRecursive": [{
"before": ["<Space>"],
"after": [":"]
}, {
"before":["<leader>", ","],
"after":[],
"commands": ["editor.action.trimTrailingWhitespace"]
}],
"files.insertFinalNewline": true,
"vim.statusBarColorControl": true,
"vim.statusBarColors" : {
"normal": "#005f5f",
"insert": "#5f0000",
"visual": "#5f00af",
"visualline": "#005f87",
"visualblock": "#86592d",
"replace": "#000000"
},
"vim.useSystemClipboard": true,
"workbench.colorTheme": "Dracula"
}