Last active
October 2, 2025 14:08
-
-
Save Victor-Fiamoncini/ab4f01bbfb8479157c2784dcc770eff6 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
| { | |
| "[dockercompose]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
| }, | |
| "[rust]": { | |
| "editor.defaultFormatter": "rust-lang.rust-analyzer" | |
| }, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[vue]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.bracketPairColorization.enabled": false, | |
| "editor.fontFamily": "JetBrainsMono Nerd Font", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, | |
| "editor.formatOnSave": true, | |
| "editor.minimap.scale": 1, | |
| "editor.renderLineHighlight": "all", | |
| "editor.rulers": [120], | |
| "editor.semanticHighlighting.enabled": "configuredByTheme", | |
| "editor.wordWrap": "wordWrapColumn", | |
| "editor.wordWrapColumn": 120, | |
| "explorer.compactFolders": false, | |
| "extensions.autoUpdate": "onlyEnabledExtensions", | |
| "extensions.ignoreRecommendations": true, | |
| "javascript.suggestionActions.enabled": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "typescript.suggestionActions.enabled": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "window.menuBarVisibility": "toggle", | |
| "window.titleBarStyle": "custom", | |
| "workbench.colorTheme": "Catppuccin Frappé", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.iconTheme": "catppuccin-frappe", | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.startupEditor": "none", | |
| "php-cs-fixer.lastDownload": 1752067703350, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": false, | |
| "markdown": false, | |
| "scminput": false | |
| }, | |
| "github.copilot.nextEditSuggestions.enabled": true, | |
| "git.openRepositoryInParentFolders": "never", | |
| "laravel-pint.enable": true, | |
| "gitlens.ai.model": "vscode", | |
| "gitlens.ai.vscode.model": "copilot:gpt-4.1", | |
| "git.autofetch": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment