Created
July 10, 2023 12:45
-
-
Save sean-brydon/2705656c8bed63edf3ce8d69534aa1be 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
{ | |
// Git | |
"git.autofetch": true, | |
// Disable telemetry | |
"telemetry.telemetryLevel": "off", | |
// Zen mode | |
"zenMode.fullScreen": false, | |
"zenMode.hideTabs": true, | |
"zenMode.centerLayout": true, | |
// Theming | |
"workbench.colorTheme": "Ayu Light Bordered", | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontFamily": "Dank Mono", | |
"window.autoDetectColorScheme": true, | |
"editor.codeLensFontSize": 13, | |
"editor.lineHeight": 1.75, | |
"editor.suggestFontSize": 15, | |
"editor.suggestLineHeight": 28, | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.lineHeight": 1, | |
"editor.formatOnSave": true, | |
"debug.console.fontSize": 10, | |
"workbench.activityBar.visible": false, | |
"editor.minimap.enabled": false, | |
"editor.glyphMargin": false, | |
"editor.folding": false, | |
"editor.lineNumbers": "off", | |
"workbench.sideBar.location": "left", | |
"workbench.editor.showTabs": true, | |
"workbench.editor.pinnedTabSizing": "compact", | |
"workbench.editor.tabSizing": "shrink", | |
"workbench.welcomePage.walkthroughs.openOnInstall": false, | |
"breadcrumbs.enabled": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.lightbulb.enabled": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "line", | |
"editor.renderControlCharacters": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
// Theme-specific UI | |
"diffEditor.renderSideBySide": false, | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.snippetSuggestions": "bottom", | |
"editor.tabSize": 2, | |
"editor.detectIndentation": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.insertFinalNewline": true, | |
"window.nativeFullScreen": true, | |
"window.newWindowDimensions": "inherit", | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.editor.tabCloseButton": "off", | |
// Search | |
"search.smartCase": true, | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
"**/vendor/*": true, | |
"**/public/*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/package-lock.json": true, | |
"**/yarn.lock": true, | |
}, | |
// Code | |
// Include "-" in word selection. | |
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
"editor.cursorBlinking": "smooth", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.wordWrap": "on", | |
"editor.tabCompletion": "on", | |
"explorer.openEditors.visible": 0, | |
"vim.smartRelativeLine": true, | |
// Files to display | |
"files.enableTrash": false, | |
"files.exclude": { | |
".cache-loader/": true, | |
".gitattributes": true, | |
".gitkeep": true, | |
".travis.yml": true, | |
".vercel": true, | |
".vscode/": true, | |
"coverage": true, | |
"acf-json": true, | |
"backend/vendor": true, | |
"CODE_OF_CONDUCT.md": true, | |
"config": false, | |
"LICENSE.md": true, | |
"package-lock.json": true, | |
"phpcs.xml": true, | |
// For more minimal option | |
".editorconfig": true, | |
"prettier.config.js": true, | |
"**/README.md": true, | |
"yarn.lock": true, | |
"node_modules/": true, | |
".gitignore": true, | |
".output/node_modules/": false, | |
// And even more ultra minimal | |
".nuxt": true, | |
".output": true, | |
"package.json": true, | |
"tsconfig.json": true, | |
}, | |
"window.title": "", | |
// "git.decorations.enabled": false, | |
// "scm.diffDecorationsGutterVisibility": "hover", | |
// "scm.diffDecorations": "none", | |
"files.watcherExclude": { | |
"**/.output/**": true, | |
"**/.yarn/**": true, | |
"**/node_modules/**": true, | |
"backend/vendor/**": true | |
}, | |
"editor.semanticHighlighting.enabled": true, | |
"editor.linkedEditing": true, | |
"editor.bracketPairColorization.enabled": true, | |
// Suggestions | |
"editor.inlineSuggest.enabled": true, | |
"editor.acceptSuggestionOnEnter": "smart", | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.suggestSelection": "first", | |
"editor.suggest.showWords": false, | |
"emmet.showAbbreviationSuggestions": false, | |
"javascript.preferences.importModuleSpecifier": "non-relative", | |
"typescript.preferences.importModuleSpecifier": "non-relative", | |
"typescript.suggest.completeFunctionCalls": true, | |
"editor.guides.indentation": false, | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"editor.unicodeHighlight.invisibleCharacters": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment