-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
115 lines (112 loc) · 3.33 KB
/
settings.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
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
114
115
// Need to Install: JetBrains Mono, Fira Code fonts, Neovim, Ayu Theme, Monokai Theme, Fluent Icons, Apc Customize UI++
{
"workbench.startupEditor": "none",
"workbench.colorTheme": "Ayu Mirage",
"editor.fontFamily": "JetBrains Mono, Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.tabSize": 2,
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.fontSize": 12,
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "Monokai Pro (Filter Machine) Icons",
"workbench.layoutControl.enabled": false,
"explorer.openEditors.visible": 0,
"explorer.autoReveal": false,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.size": "proportional",
"workbench.tree.indent": 12,
"workbench.tree.renderIndentGuides": "none",
"workbench.editor.tabCloseButton": "off",
"breadcrumbs.enabled": false,
"editor.overviewRulerBorder": false,
"editor.padding.bottom": 14,
"editor.padding.top": 14,
"editor.scrollbar.horizontal": "hidden",
"editor.codeLens": false,
"editor.glyphMargin": false,
"editor.foldingHighlight": false,
"editor.renderLineHighlight": "none",
"editor.guides.indentation": false,
"editor.guides.highlightActiveIndentation": false,
"editor.matchBrackets": "near",
"editor.guides.highlightActiveBracketPair": false,
"editor.parameterHints.enabled": false,
"editor.inlayHints.enabled": "off",
"editor.smoothScrolling": true,
"editor.lineNumbers": "on",
"explorer.compactFolders": false,
"window.autoDetectHighContrast": false,
"zenMode.fullScreen": false,
"editor.lineHeight": 24,
"workbench.activityBar.location": "top",
"workbench.sideBar.location": "right",
"workbench.editor.tabActionCloseVisibility": false,
"apc.electron": {
"frame": false,
"titleBarStyle": "hidden",
"trafficLightPosition": {
"x": 9,
"y": 9
}
},
"window.titleBarStyle": "native",
"apc.statusBar": {
"position": "editor-bottom"
},
"apc.activityBar": {
"position": "top",
"size": 36
},
"editor.hideCursorInOverviewRuler": true,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "off",
"editor.minimap.showSlider": "mouseover",
"update.mode": "manual",
"apc.header": {
"height": 36
},
"vim.enableNeovim": true,
"vim.neovimPath": "/opt/homebrew/bin/nvim",
"vim.leader": "<space>",
"vim.useSystemClipboard": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["y", "y"],
"after": ["\"", "+", "y", "y"]
},
{
"before": ["y", "w"],
"after": ["\"", "+", "y", "w"]
},
{
"before": ["y", "i", "w"],
"after": ["\"", "+", "y", "i", "w"]
},
{
"before": ["y", "a", "w"],
"after": ["\"", "+", "y", "a", "w"]
},
{
"before": ["y", "y"],
"after": ["\"", "+", "y", "y"]
},
{
"before": ["y", "s"],
"after": ["\"", "+", "y", "s"]
},
{
"before": ["y", "i", "s"],
"after": ["\"", "+", "y", "i", "s"]
},
{
"before": ["y", "a", "s"],
"after": ["\"", "+", "y", "a", "s"]
}
],
"vim.normalModeKeyBindings": [
],
"vim.commandLineModeKeyBindings": [
]
}