Skip to content

Instantly share code, notes, and snippets.

@davidmondok
Created April 10, 2020 22:31
Show Gist options
  • Save davidmondok/95492b1461d0e03c0a6e39e813dfa9ee to your computer and use it in GitHub Desktop.
Save davidmondok/95492b1461d0e03c0a6e39e813dfa9ee to your computer and use it in GitHub Desktop.
vscode settings
{
"beautify.language": {
"js": {
"ext": ["js", "json", "ts"]
},
},
"css.validate": false,
"diffEditor.ignoreTrimWhitespace": true,
"editor.fontSize": 12,
"editor.lineHeight": 18,
"editor.renderWhitespace": "all",
"editor.rulers": [
80,
120
],
"editor.snippetSuggestions": "top",
"editor.wordWrap": "on",
"emmet.triggerExpansionOnTab": false,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"extensions.autoUpdate": false,
"files.exclude": {
"**/.git": false
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": true
},
"gitlens.keymap": "alternate",
"less.validate": false,
"liveServer.settings.donotShowInfoMsg": true,
"php.suggest.basic": false,
"scss.validate": false,
"stylelint.enable": true,
"sync.autoUpload": true,
"sync.gist": "1bc697e7e473a5991e55c89027934747",
"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.shell.osx": "zsh",
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"terminal.ansiBlack": "#003541",
"terminal.ansiBlue": "#268bd2",
"terminal.ansiBrightBlack": "#586e75",
"terminal.ansiBrightBlue": "#839496",
"terminal.ansiBrightCyan": "#93a1a1",
"terminal.ansiBrightGreen": "#586e75",
"terminal.ansiBrightMagenta": "#6c6ec6",
"terminal.ansiBrightRed": "#cb4b16",
"terminal.ansiBrightWhite": "#fdf6e3",
"terminal.ansiBrightYellow": "#657b83",
"terminal.ansiCyan": "#2aa198",
"terminal.ansiGreen": "#859901",
"terminal.ansiMagenta": "#d33682",
"terminal.ansiRed": "#dc322f",
"terminal.ansiWhite": "#eee8d5",
"terminal.ansiYellow": "#b58901",
"terminal.background": "#002833",
"terminal.foreground": "#839496",
"terminalCursor.background": "#003541",
"terminalCursor.foreground": "#839496"
},
"workbench.colorTheme": "Twilight",
"workbench.iconTheme": "material-icon-theme",
"workbench.settings.editor": "json",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "newUntitledFile",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"stylelint.autoFixOnSave": true,
"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