Skip to content

Instantly share code, notes, and snippets.

@suiluj
Created June 15, 2023 11:32
Show Gist options
  • Save suiluj/55abb48f17b41b4f841892e972569b69 to your computer and use it in GitHub Desktop.
Save suiluj/55abb48f17b41b4f841892e972569b69 to your computer and use it in GitHub Desktop.
vscode user settings
{
"workbench.colorTheme": "Default Light+",
"workbench.colorCustomizations": {
// https://coolors.co/e5e3d7-6d1a36-33673b-e4572e-083d77
"editorBracketHighlight.foreground1": "#467599",
"editorBracketHighlight.foreground2": "#E4572E",
"editorBracketHighlight.foreground3": "#8EA604",
"editorBracketHighlight.foreground4": "#6D1A36"
},
"vim.startInInsertMode": true,
"editor.cursorBlinking": "solid",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"dev.containers.workspaceMountConsistency": "delegated",
"vim.handleKeys": {
"<C-c>": false,
"<C-y>": false,
"<C-x>": false,
"<C-w>": false,
"<C-a>": false
},
"vim.useCtrlKeys": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.bracketPairColorization.enabled": true,
"notebook.output.textLineLimit": 500,
"notebook.markup.fontSize": 14,
"hediet.vscode-drawio.codeLinkActivated": false,
"telemetry.telemetryLevel": "off",
"extensions.ignoreRecommendations": true,
"cmake.configureOnOpen": true,
"git.openRepositoryInParentFolders": "always",
"gitlens.plusFeatures.enabled": false,
"editor.accessibilitySupport": "off",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"footsteps.doHighlightChanges": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment