Last active
January 9, 2026 19:12
-
-
Save guizordan/ff9aa01585d530a371a6174d01350320 to your computer and use it in GitHub Desktop.
Ultimate VS Code/Cursor config
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
| { | |
| "editor.formatOnSave": true, | |
| "terminal.integrated.fontFamily": "MesloLGS Nerd Font Mono", | |
| "editor.fontFamily": "MesloLGS Nerd Font Mono", | |
| "editor.suggest.showReferences": false, | |
| "editor.suggest.showTypeParameters": true, | |
| "editor.snippetSuggestions": "top", | |
| "editor.wordWrap": "on", | |
| "emmet.triggerExpansionOnTab": true, | |
| "editor.lineHeight": 24, | |
| "editor.fontWeight": "400", | |
| "editor.cursorWidth": 2, | |
| "editor.showUnused": true, | |
| "terminal.integrated.fontWeight": "600", | |
| "files.trimTrailingWhitespace": true, | |
| "files.trimFinalNewlines": true, | |
| "terminal.integrated.fontWeightBold": "700", | |
| "terminal.integrated.lineHeight": 1.6, | |
| "terminal.explorerKind": "external", | |
| "emmet.showSuggestionsAsSnippets": true, | |
| "git.fetchOnPull": true, | |
| "grunt.autoDetect": "off", | |
| "gulp.autoDetect": "off", | |
| "jake.autoDetect": "off", | |
| "git.autofetch": true, | |
| "git.autoStash": true, | |
| "editor.fontSize": 13, | |
| "editor.fontLigatures": true, | |
| "editor.renderLineHighlight": "gutter", | |
| "terminal.integrated.fontSize": 12, | |
| "extensions.ignoreRecommendations": true, | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.codeLens.enabled": false, | |
| "breadcrumbs.enabled": true, | |
| "git.enableSmartCommit": true, | |
| "editor.parameterHints.enabled": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "workbench.editor.showTabs": "multiple", | |
| "editor.minimap.enabled": false, | |
| "editor.renderWhitespace": "all", | |
| "search.exclude": { | |
| "**/docs": true, | |
| "**/ios": true, | |
| "**/android": true, | |
| "**/.git": true, | |
| "**/node_modules": true, | |
| "**/flow-typed/": true, | |
| "**/bower_components": true, | |
| "**/tmp": true, | |
| "**/package-lock.json": true, | |
| "**/*Tests.cs": true, | |
| }, | |
| "files.exclude": { | |
| "**/.classpath": true, | |
| "**/.project": true, | |
| "**/.settings": true, | |
| "**/.factorypath": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/*/**": true | |
| }, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "git.openRepositoryInParentFolders": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "window.zoomLevel": -0.5, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "editor.suggest.showColors": false, | |
| "editor.suggest.showConstructors": false, | |
| "editor.suggest.showDeprecated": false, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "editor.gotoLocation.multipleImplementations": "goto", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "workbench.colorTheme": "Dracula Theme", | |
| "editor.tabSize": 2, | |
| "editor.autoIndent": "brackets", | |
| "editor.stickyScroll.enabled": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "emmet.excludeLanguages": ["markdown", "javascript"], | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "nunjucks": "html" | |
| }, | |
| "terminal.integrated.inheritEnv": true, | |
| "terminal.integrated.defaultProfile.linux": "zsh", | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment