Skip to content

Instantly share code, notes, and snippets.

@cmendez20
Created March 24, 2022 03:16
Show Gist options
  • Save cmendez20/10b424e0aba7c64314943a01f1b0e3fc to your computer and use it in GitHub Desktop.
Save cmendez20/10b424e0aba7c64314943a01f1b0e3fc to your computer and use it in GitHub Desktop.
My VS Code Settings
{
"terminal.integrated.fontSize": 14,
"terminal.integrated.letterSpacing": 0.5,
"editor.letterSpacing": 0.5,
"editor.renderWhitespace": "trailing",
"editor.tabSize": 2,
"editor.fontLigatures": true,
"[md]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"editor.renderControlCharacters": true,
"highlight-matching-tag.style": {},
"editor.minimap.enabled": false,
"files.associations": {
"*.html": "html"
},
"emmet.includeLanguages": {
"njk": "html",
"nunjucks": "html"
},
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/dist"
}
],
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"workbench.startupEditor": "newUntitledFile",
"editor.formatOnPaste": true,
"workbench.sideBar.location": "right",
"html.format.wrapLineLength": 100,
"sync.gist": "a2ea34e4bbf125d0df051718fd4209fd",
"editor.fontFamily": "'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Calbri', 'Fira Code', 'Consolas'",
"terminal.integrated.fontFamily": "Fira Code",
"liveServer.settings.donotShowInfoMsg": true,
"workbench.colorCustomizations": {
"[Default Dark+]": {
"statusBar.background": "#252526"
// "statusBar.noFolderBackground": "#212121",
// "statusBar.debuggingBackground": "#263238"
},
// "editorLineNumber.foreground": "#999999"
"editorBracketHighlight.foreground1": "#5bb3b3",
"editorBracketHighlight.foreground2": "#fac863",
"editorBracketHighlight.foreground3": "#f99157",
"editorBracketHighlight.foreground4": "#ec5f67",
"editorBracketHighlight.foreground5": "#bb80b3",
"editorBracketHighlight.foreground6": "#98C379",
"editorBracketHighlight.unexpectedBracket.foreground": "#db6165"
// "statusBar.background": "#252526"
// "statusBar.noFolderBackground": "#212121",
// "statusBar.debuggingBackground": "#263238"
},
"explorer.compactFolders": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.lineHeight": 25,
"security.workspace.trust.untrustedFiles": "open",
"security.workspace.trust.enabled": false,
"prettier.arrowParens": "avoid",
"prettier.singleQuote": true,
"editor.linkedEditing": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.profiles.windows": {
"C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe (migrated)": {
"path": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"args": ["-l"]
},
"QMK_MSYS": {
"path": "C:/QMK_MSYS/usr/bin/bash.exe",
"env": {
"MSYSTEM": "MINGW64",
"CHERE_INVOKING": "1"
},
"args": ["--login"]
}
},
"editor.guides.indentation": false,
"git.confirmSync": false,
"editor.semanticHighlighting.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment