Skip to content

Instantly share code, notes, and snippets.

@marcs-feh
Created January 15, 2025 21:01
Show Gist options
  • Save marcs-feh/d6be54b1366d28644ff948d46ad1e2bf to your computer and use it in GitHub Desktop.
Save marcs-feh/d6be54b1366d28644ff948d46ad1e2bf to your computer and use it in GitHub Desktop.
user settings for vscode
[
{
"key": "ctrl+shift+r",
"command": "workbench.action.webview.reloadWebviewAction"
},
{
"key": "ctrl+s",
"command": "workbench.action.files.saveWithoutFormatting"
},
{
"key": "ctrl+k s",
"command": "-workbench.action.files.saveWithoutFormatting"
},
{
"key": "ctrl+k s",
"command": "workbench.action.files.save"
},
{
"key": "ctrl+s",
"command": "-workbench.action.files.save"
},
]
{
"keyboard.dispatch": "keyCode",
"editor.fontFamily": "'JetBrains Mono', 'Iosevka', 'Droid Sans Mono', 'monospace', monospace",
"editor.occurrencesHighlight": "off",
"editor.bracketPairColorization.enabled": false,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": false,
"editor.rulers": [ 120 ],
"editor.inlayHints.enabled": "offUnlessPressed",
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.tokenColorCustomizations":{
"[Default Dark Modern]": {
"types": "#569cd6",
"keywords": "#c586c0",
"variables": "#cccccc",
"functions": "#cccccc",
},
},
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"workbench.editor.editorActionsLocation": "hidden",
"markdown.occurrencesHighlight.enabled": true,
"terminal.integrated.tabs.location": "left",
"git.autofetch": true,
"git.confirmSync": false,
"git.openRepositoryInParentFolders": "never",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.autoSave": "onFocusChange",
"debug.autoExpandLazyVariables": true,
"redhat.telemetry.enabled": false,
"java.debug.settings.showQualifiedNames": false,
"[go]": {
"editor.formatOnSave": false
},
"clangd.arguments": [
"-header-insertion=never"
],
"vim.useSystemClipboard": true,
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{ "before": [ "<leader>", "e" ], "commands": [ "workbench.action.quickOpen" ] },
{ "before": [ "<C-o>" ], "commands": [ "workbench.action.focusPreviousGroup" ] }
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment