Last active
March 29, 2023 15:20
-
-
Save azuri-gm/246bca4680c893bdee27ce948f686783 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
This file contains 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
{ | |
"telemetry.telemetryLevel": "off", | |
"zenMode.fullScreen": false, | |
"zenMode.hideTabs": true, | |
"zenMode.centerLayout": false, | |
"workbench.iconTheme": "nonicons", | |
"editor.fontFamily": "Monolisa Plus, Dank Mono, Fira Code, Jetbrains Mono", | |
"editor.fontLigatures": "'calt' on, 'liga' on, 'ss02' on", | |
"terminal.integrated.fontFamily": "Monolisa plus, Dank Mono, Hack Nerd Font, FiraCode Nerd Font", | |
"window.autoDetectColorScheme": true, | |
"editor.codeLensFontSize": 8, | |
"editor.lineHeight": 2.2, | |
"editor.suggestFontSize": 13, | |
"editor.suggestLineHeight": 28, | |
"terminal.integrated.lineHeight": 1.2, | |
"debug.console.fontSize": 10, | |
"editor.minimap.enabled": false, | |
"editor.glyphMargin": false, | |
"editor.folding": false, | |
"workbench.editor.pinnedTabSizing": "compact", | |
"workbench.editor.tabSizing": "shrink", | |
"breadcrumbs.enabled": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.lightbulb.enabled": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "line", | |
"editor.renderControlCharacters": false, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
"volar.icon.splitEditors": false, | |
"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.smartCase": true, | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
"**/vendor/*": true, | |
"**/public/*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/package-lock.json": true, | |
"**/yarn.lock": true | |
}, | |
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
"editor.cursorBlinking": "smooth", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.wordWrap": "on", | |
"editor.tabCompletion": "on", | |
"explorer.openEditors.visible": 0, | |
"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, | |
".editorconfig": true, | |
"prettier.config.js": true, | |
"yarn.lock": true, | |
"node_modules/": false, | |
".gitignore": true, | |
".output/node_modules/": false, | |
".nuxt": true, | |
".output": true | |
}, | |
"gitlens.codeLens.enabled": false, | |
"files.watcherExclude": { | |
"**/.output/**": true, | |
"**/.yarn/**": true, | |
"**/node_modules/**": true, | |
"backend/vendor/**": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": false, | |
"source.fixAll": true | |
}, | |
"editor.semanticHighlighting.enabled": true, | |
"editor.linkedEditing": true, | |
"editor.bracketPairColorization.enabled": true, | |
"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, | |
"workbench.colorCustomizations": { | |
"errorLens.hintBackground": "#ff00", | |
"errorLens.warningBackground": "#fff0", | |
"errorLens.errorBackground": "#fff0", | |
"errorLens.infoBackground": "#fff0" | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"explorer.fileNesting.enabled": true, | |
"explorer.fileNesting.expand": false, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": false, | |
"javascript": true | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"githubPullRequests.pullBranch": "never", | |
"symbols.hidesExplorerArrows": false, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"prettier.jsxSingleQuote": true, | |
"prettier.singleQuote": true, | |
"window.zoomLevel": 0.25, | |
"workbench.statusBar.visible": false, | |
"volar.codeLens.references": false, | |
"explorer.autoRevealExclude": { | |
"": true | |
}, | |
"workbench.activityBar.visible": false, | |
"totalTypeScript.hideAllTips": true, | |
"totalTypeScript.hideBasicTips": false, | |
"workbench.colorTheme": "poimandres-noitalics", | |
"editor.formatOnSave": true, | |
"terminal.integrated.tabs.defaultIcon": "terminal-bash", | |
"terminal.integrated.tabs.showActiveTerminal": "always", | |
"editor.scrollbar.vertical": "hidden", | |
"workbench.editor.showTabs": false, | |
"editor.scrollBeyondLastLine": false, | |
"editor.scrollbar.horizontal": "hidden", | |
"workbench.sideBar.location": "right", | |
"terminal.integrated.env.osx": { | |
"path": "/Users/eduardogaytan/.console-ninja/.bin:${env:PATH}" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment