Created
September 4, 2020 21:07
-
-
Save nicolasbrugneaux/272bdae8a4d390b84511aaa0feefbd32 to your computer and use it in GitHub Desktop.
vscode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.glyphMargin": false, | |
"editor.wordWrap": "off", | |
"workbench.colorCustomizations": { | |
"editorIndentGuide.activeBackground": "#888", | |
}, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": false, | |
"source.fixAll.eslint": true | |
}, | |
"files.exclude": { | |
"**/.buckd": true, | |
"**/.cache": true, | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"**/.hg": true, | |
"**/.svn": true, | |
"**/buck-out": true, | |
"**/build": true, | |
"**/CVS": true, | |
"**/dist": true, | |
"**/node_modules": true | |
}, | |
"editor.renderWhitespace": "boundary", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.ignoreTrimWhitespace": true, | |
"files.associations": { | |
"Fastfile": "ruby" | |
}, | |
"javascript.referencesCodeLens.enabled": false, | |
"javascript.preferences.quoteStyle": "single", | |
"flow.enabled": false, | |
"workbench.colorTheme": "Noctis Viola", | |
"window.zoomLevel": 0, | |
"workbench.startupEditor": "newUntitledFile", | |
"extensions.ignoreRecommendations": true, | |
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib", | |
"explorer.confirmDragAndDrop": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "string", | |
"settings": { | |
"fontStyle": "italic", | |
// "foreground": "#fff" | |
} | |
}, | |
{ | |
"scope": "string.other", | |
"settings": { | |
"fontStyle": "italic", | |
// "foreground": "#fff" | |
} | |
}, | |
{ | |
"scope": "string.quoted", | |
"settings": { | |
"fontStyle": "italic", | |
// "foreground": "#fff" | |
} | |
}, | |
{ | |
"scope": "", | |
"settings": { | |
"fontStyle": "italic", | |
// "foreground": "#fff" | |
} | |
}, | |
{ | |
"scope": "comment", | |
"settings": { | |
"fontStyle": "italic", | |
// "foreground": "#aaa" | |
} | |
} | |
] | |
}, | |
"workbench.statusBar.feedback.visible": false, | |
"files.autoSave": "onFocusChange", | |
"git.confirmSync": false, | |
"typescript.preferences.importModuleSpecifier": "non-relative", | |
"sync.gist": "7852fe9afc7d229537a3b45ab0396fab", | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"sync.autoDownload": false, | |
"sync.autoUpload": true, | |
"sync.lastUpload": "2018-07-27T09:53:46.350Z", | |
"sync.lastDownload": "2018-07-27T09:54:09.211Z", | |
"sync.forceDownload": false, | |
"editor.fontSize": 14, | |
"workbench.fontAliasing": "auto", | |
"editor.fontFamily": "Operator Mono", | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
// "editor.formatOnSave": true, | |
"editor.showUnused": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"git.enableSmartCommit": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.find.seedSearchStringFromSelection": false, | |
"editor.cursorWidth": 3, | |
"editor.cursorBlinking": "smooth", | |
"editor.minimap.renderCharacters": false, | |
"files.trimFinalNewlines": true, | |
"files.useExperimentalFileWatcher": true, | |
"search.smartCase": true, | |
"terminal.explorerKind": "external", | |
"terminal.external.osxExec": "Iterm.app", | |
"todohighlight.isCaseSensitive": false, | |
"todohighlight.keywords": [ | |
{ | |
"text": "todo", | |
"backgroundColor": "#7D4CDB", | |
"color": "white" | |
}, | |
{ | |
"text": "fixme", | |
"backgroundColor": "#FF4040", | |
"color": "white" | |
}, | |
{ | |
"text": "note", | |
"backgroundColor": "#00C781", | |
"color": "white" | |
}, | |
], | |
"editor.fontLigatures": true, | |
"editor.fontWeight": "400", | |
"css.lint.boxModel": "warning", | |
"css.lint.compatibleVendorPrefixes": "warning", | |
"css.lint.duplicateProperties": "warning", | |
"css.lint.float": "warning", | |
"css.lint.important": "warning", | |
"css.lint.universalSelector": "warning", | |
"search.useGlobalIgnoreFiles": true, | |
"go.useLanguageServer": true, | |
"[go]": {}, | |
"merge-conflict.diffViewPosition": "Below", | |
"vsicons.dontShowNewVersionMessage": true, | |
"tslint.packageManager": "yarn", | |
"eslint.alwaysShowStatus": true, | |
"javascript.implicitProjectConfig.checkJs": true, | |
"timeline.showView": true, | |
"editor.semanticHighlighting.enabled": true, | |
"grammarly.diagnostics": { | |
"[markdown]": { | |
"ignore": [ | |
"code" | |
] | |
}, | |
"[html]": { | |
"ignore": [ | |
"url" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment