Skip to content

Instantly share code, notes, and snippets.

@stphn
Last active April 23, 2020 04:42
Show Gist options
  • Save stphn/0af2f39f0635a22307415c95e62810dd to your computer and use it in GitHub Desktop.
Save stphn/0af2f39f0635a22307415c95e62810dd to your computer and use it in GitHub Desktop.
{
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.cursorStyle": "line-thin",
"workbench.iconTheme": "file-icons-colourless",
"editor.fontFamily": "BlexMono Nerd Font Mono",
"editor.fontLigatures": true,
"editor.renderControlCharacters": true,
"editor.fontWeight": "400",
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"editor.formatOnSave": true,
// "bracket-pair-colorizer-2.colors": [
// "#994cc3",
// "#403f53",
// "#4876d6"
// ],
"bracket-pair-colorizer-2.colors": [
"#ffffff",
"#7fdbca",
"#ffd580",
],
"bracket-pair-colorizer-2.excludedLanguages": [
"scss",
"nunjucks",
{
"vue-html": "html"
}
],
"breadcrumbs.enabled": true,
"emmet.excludeLanguages": [],
"emmet.includeLanguages": {
"nunjucks": "html",
"ejs": "html",
"markdown": "html",
"vue-html": "html",
"javascript": "javascriptreact"
},
"git.autofetch": true,
"git.confirmSync": false,
"editor.matchBrackets": "never",
"git.enableSmartCommit": true,
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.startupEditor": "newUntitledFile",
"workbench.settings.editor": "ui",
"editor.largeFileOptimizations": false,
"nunjucksFormat.commline": true,
"workbench.fontAliasing": "auto",
"workbench.colorTheme": "Lucien",
"terminal.integrated.rendererType": "dom",
"malvid.url": "**/src/assets/components",
"eslint.packageManager": "npm",
"terminal.integrated.shell.osx": "/bin/zsh",
"typescript.validate.enable": false,
"eslint.format.enable": true,
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": false
}
},
"turboConsoleLog.quote": "`",
"css.validate": false,
"scss.validate": false,
"stylelint.enable": true,
"stylelint.autoFixOnSave": true,
"editor.formatOnType": true,
"files.associations": {
"*.html": "html"
},
"prettier.jsxSingleQuote": true,
"typescript.format.semicolons": "remove",
"javascript.format.semicolons": "remove",
"prettier.semi": false,
"html.format.indentInnerHtml": true,
"javascript.preferences.quoteStyle": "single",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlens.views.repositories.files.layout": "tree",
"workbench.sideBar.location": "left",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment