-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
132 lines (131 loc) · 4.65 KB
/
settings.json
File metadata and controls
132 lines (131 loc) · 4.65 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"makefile.configureOnOpen": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": false,
"vim.insertModeKeyBindings": [],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "p"],
"after": [":", "b", "p", "<Enter>"]
},
{
"before": ["<leader>", "n"],
"after": [":", "b", "n", "<Enter>"]
},
{
"before": ["<leader>", "d"],
"after": [":", "b", "d", "!", "<Enter>"]
},
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-p>": false,
"<C-k>": false,
"<C-a>": false,
"<C-e>": false,
"<C-b>": false,
"<C-f>": false,
"<C-h>": false
},
// To improve performance
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
"editor.lineHeight": 22,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.minimap.renderCharacters": false,
"editor.renderLineHighlight": "none",
"editor.lineNumbers": "relative",
"editor.cursorBlinking": "solid",
"editor.fontFamily": "'JetBrainsMono Nerd Font Mono', 'Iosevka Nerd Font Mono', 'Droid Sans Mono', 'monospace', monospace",
"editor.lightbulb.enabled": "off",
"editor.hover.delay": 1000,
"editor.occurrencesHighlight": "off",
"workbench.colorTheme": "Gruvbox Material Dark",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#ffcc11",
"editorCursor.background": "#000000"
},
"editor.minimap.enabled": false,
"github.copilot.renameSuggestions.triggerAutomatically": false,
"github.copilot.chat.useProjectTemplates": false,
"github.copilot.chat.agent.currentEditorContext.enabled": false,
"github.copilot.chat.startDebugging.enabled": false,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"git.confirmSync": false,
"C_Cpp.copilotHover": "disabled",
"github.copilot.chat.agent.autoFix": false,
"github.copilot.chat.agent.runTasks": false,
"github.copilot.chat.codeGeneration.useInstructionFiles": false,
"github.copilot.editor.enableCodeActions": false,
"github.copilot.nextEditSuggestions.enabled": false,
"github.copilot.nextEditSuggestions.fixes": false,
"github.copilot.chat.copilotDebugCommand.enabled": false,
"github.copilot.chat.reviewSelection.enabled": false,
"github.copilot.chat.edits.newNotebook.enabled": false,
"github.copilot.chat.edits.suggestRelatedFilesForTests": false,
"github.copilot.chat.edits.suggestRelatedFilesFromGitHistory": false,
"github.copilot.chat.newWorkspaceCreation.enabled": false,
"github.copilot.chat.setupTests.enabled": false,
"github.copilot.chat.summarizeAgentConversationHistory.enabled": false,
"chat.agent.enabled": false,
"chat.commandCenter.enabled": false,
"telemetry.feedback.enabled": false,
"workbench.startupEditor": "none",
"workbench.editor.empty.hint": "hidden",
"window.zoomLevel": 0.3,
"accessibility.openChatEditedFiles": false,
"accessibility.verbosity.inlineChat": false,
"accessibility.verbosity.panelChat": false,
"chat.checkpoints.enabled": false,
"chat.detectParticipant.enabled": false,
"chat.editing.confirmEditRequestRemoval": false,
"chat.editing.confirmEditRequestRetry": false,
"chat.extensionTools.enabled": false,
"chat.emptyChatState.enabled": false,
"chat.implicitContext.suggestedContext": false,
"chat.promptFiles": false,
"chat.notifyWindowOnConfirmation": false,
"chat.sendElementsToChat.attachImages": false,
"chat.sendElementsToChat.enabled": false,
"chat.tools.useTreePicker": false,
"chat.undoRequests.restoreInput": false,
"chat.useFileStorage": false,
"notebook.experimental.generate": false,
"chat.editRequests": "none",
"chat.sendElementsToChat.attachCSS": false,
"inlineChat.accessibleDiffView": "off",
"inlineChat.lineNaturalLanguageHint": false,
"workbench.secondarySideBar.defaultVisibility": "hidden",
"extensions.ignoreRecommendations": true,
"json.schemas": [
],
"editor.wordWrap": "on",
"workbench.tips.enabled": false,
"workbench.tree.enableStickyScroll": false,
"problems.decorations.enabled": false,
"problems.autoReveal": false,
"problems.visibility": false,
"extensions.autoCheckUpdates": false,
"update.showReleaseNotes": false,
"extensions.autoUpdate": false,
"update.mode": "none",
"editor.acceptSuggestionOnCommitCharacter": false,
"chat.mcp.access": "none",
"gruvboxMaterial.darkWorkbench": "high-contrast",
"gruvboxMaterial.darkContrast": "hard",
"terminal.integrated.stickyScroll.enabled": false,
"clangd.path": "/usr/bin/clangd",
"editor.inlayHints.enabled": "off",
"editor.stickyScroll.enabled": false,
}