-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-config
69 lines (69 loc) · 1.94 KB
/
vscode-config
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
{
"editor.fontFamily": "CodeNewRoman,mononokiNerdFontCM-Regular, UbuntuMonoNerdFontC-Regular, Hermit-medium, Ubuntu Mono, Inconsolata, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.lineNumbers": "relative",
"editor.ruler": [
79
],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#ff4081",
"statusBar.background": "#005f87",
"statusBar.noFolderBackground": "#005f87",
"statusBar.debuggingBackground": "#005f87"
},
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"workbench.colorTheme": "Kary - Eye Light",
"rust.mode": "legacy",
"editor.autoClosingBrackets": false,
"rust.rustup": {
"toolchain": "nightly-x86_64-apple-darwin"
},
"explorer.confirmDragAndDrop": false,
"[python]": {
"editor.tabSize": 4,
"editor.ruler": [
79
]
},
"java.errors.incompleteClasspath.severity": "ignore",
"vim.leader": "<space>",
"vim.enableNeovim": true,
"vim.neovimPath": "nvim",
"vim.statusBarColorControl": true,
"vim.statusBarColors": {
"normal": "#005f5f",
"insert": "#5f0000",
"visual": "#5f00af",
"visualline": "#005f87",
"visualblock": "#86592d",
"replace": "#000000"
},
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"<space>", "f", "f"
],
"after": [],
"commands": [
{
"command": "workbench.action.quickOpen",
"args": []
}
]
},
{
"before": [
"<space>", "f", "s"
],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
}
]
}
]
}