Last active
December 14, 2024 07:41
-
-
Save Victor-Fiamoncini/ab4f01bbfb8479157c2784dcc770eff6 to your computer and use it in GitHub Desktop.
VSCode 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
{ | |
"security.workspace.trust.untrustedFiles": "open", | |
"window.titleBarStyle": "native", | |
"workbench.startupEditor": "none", | |
"workbench.editor.labelFormat": "short", | |
"workbench.layoutControl.enabled": false, | |
"workbench.colorTheme": "Catppuccin Frappé", | |
"workbench.iconTheme": "catppuccin-frappe", | |
"window.customTitleBarVisibility": "never", | |
"editor.formatOnSave": true, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "JetBrainsMono NF", | |
"editor.fontSize": 14, | |
"editor.wordWrapColumn": 120, | |
"window.menuBarVisibility": "toggle", | |
"editor.rulers": [80], | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.bracketPairColorization.enabled": false, | |
"editor.renderLineHighlight": "all", | |
"editor.semanticHighlighting.enabled": "configuredByTheme", | |
"editor.minimap.scale": 1, | |
"extensions.autoUpdate": "onlyEnabledExtensions", | |
"extensions.ignoreRecommendations": true, | |
"typescript.suggestionActions.enabled": true, | |
"javascript.suggestionActions.enabled": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"python.analysis.autoImportCompletions": true, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.black-formatter" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[django-html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[rust]": { | |
"editor.defaultFormatter": "rust-lang.rust-analyzer" | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"[blade]": { | |
"editor.defaultFormatter": "shufo.vscode-blade-formatter" | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment