Skip to content

Instantly share code, notes, and snippets.

@Leodau
Last active July 26, 2024 10:13
Show Gist options
  • Save Leodau/19cd1eda71bed451b8d67bd2a4768585 to your computer and use it in GitHub Desktop.
Save Leodau/19cd1eda71bed451b8d67bd2a4768585 to your computer and use it in GitHub Desktop.
VSCODE LEO Settings
{
// Fonts
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
// Editor & Usage
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorWidth": 2,
"editor.minimap.enabled": false,
"editor.smoothScrolling": true,
"editor.scrollBeyondLastLine": true,
"editor.renderWhitespace": "boundary",
"editor.formatOnPaste": false,
"editor.detectIndentation": false,
"editor.cursorBlinking": "expand",
"editor.folding": false,
"editor.lineHeight": 22,
"editor.renderLineHighlight": "all",
"editor.overviewRulerBorder": false,
"files.autoSave": "onFocusChange",
// Workbench
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": "single",
"workbench.editor.tabSizing": "fit",
"workbench.editor.showIcons": false,
"workbench.startupEditor": "none",
"workbench.activityBar.location": "hidden",
"workbench.colorTheme": "Dracula Theme",
// Accessibility
"accessibility.signals.lineHasError": {
"sound": "off"
},
"accessibility.signals.lineHasFoldedArea": {
"sound": "off"
},
"accessibility.signals.lineHasBreakpoint": {
"sound": "off"
},
"accessibility.signals.lineHasInlineSuggestion": {
"sound": "off"
},
"accessibility.signals.onDebugBreak": {
"sound": "off"
},
"accessibility.signals.noInlayHints": {
"sound": "off"
},
// Terminal & Other
"terminal.integrated.confirmOnExit": "always",
"terminal.integrated.fontFamily": "monospace",
"telemetry.telemetryLevel": "off",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.h": "c",
"*.hpp": "cpp",
"*.php": "php"
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"xml": {
"attr_quotes": "single"
}
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/web/node_modules": true,
"**/web/build": true,
"**/admin/node_modules": true
},
// Language Specific
"javascript.updateImportsOnFileMove.enabled": "always",
"go.lintTool": "golangci-lint",
"go.lintFlags": ["--fast"],
"go.buildFlags": ["-tags=unit,integration"],
"go.testTags": "unit,integration",
"go.toolsManagement.autoUpdate": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment