Created
August 30, 2023 09:33
-
-
Save erhaem/2e2f34461d752d1bd9a8e50530dca797 to your computer and use it in GitHub Desktop.
my vscode (vscodium btw) 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
| { | |
| "workbench.editor.showTabs": false, | |
| "workbench.colorTheme": "One Dark Pro Flat", | |
| "workbench.colorCustomizations": { | |
| "[One Dark Pro Flat]": { | |
| "tab.activeBackground": "#282c34", | |
| "activityBar.background": "#282c34", | |
| "sideBar.background": "#282c34", | |
| "tab.activeBorder": "#282c34", | |
| "sideBar.border": "#282c34" | |
| // "terminal.border": "#282c34", | |
| } | |
| }, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true, | |
| "editor.fontSize": 12.9, | |
| "editor.fontLigatures": true, | |
| //"editor.lineHeight": 17, | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.tabSize": 2, | |
| "update.enableWindowsBackgroundUpdates": false, | |
| "update.showReleaseNotes": false, | |
| "update.mode": "none", | |
| "extensions.autoCheckUpdates": false, | |
| "workbench.startupEditor": "none", | |
| "[html]": { | |
| "editor.tabSize": 2, | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[javascript]": { | |
| "editor.tabSize": 2 | |
| }, | |
| "[typescript]": { | |
| "editor.tabSize": 2 | |
| }, | |
| "[php]": { | |
| "editor.tabSize": 4 | |
| }, | |
| "[python]": { | |
| "editor.tabSize": 4, | |
| "editor.wordBasedSuggestions": false | |
| }, | |
| "editor.linkedEditing": true, | |
| "emmet.triggerExpansionOnTab": true, | |
| "workbench.statusBar.visible": false, | |
| "workbench.sideBar.location": "right", | |
| "editor.minimap.enabled": false, | |
| "workbench.activityBar.visible": false, | |
| // "editor.lineNumbers": "off", | |
| "editor.glyphMargin": false, | |
| "files.exclude": { | |
| ".gitignore": true, | |
| "**/node_modules/*/**": true | |
| }, | |
| "intelephense.diagnostics.enable": false, | |
| "intelephense.diagnostics.implementationErrors": false, | |
| "intelephense.diagnostics.languageConstraints": false, | |
| "liveServer.settings.CustomBrowser": "firefox", | |
| "dart.checkForSdkUpdates": false, | |
| // "editor.folding": false, | |
| "window.menuBarVisibility": "toggle", | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "workbench.layoutControl.type": "toggles", | |
| "workbench.layoutControl.enabled": false, | |
| "php.validate.executablePath": "E:\\Development\\laragon-portable\\bin\\php\\php-8.1.8-Win32-vs16-x64\\php.exe", | |
| "html.autoClosingTags": true, | |
| "javascript.autoClosingTags": true, | |
| "typescript.autoClosingTags": true, | |
| "javascript.suggest.autoImports": true, | |
| "typescript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| // "source.organizeImports": true, | |
| "files.trimTrailingWhitespace": true, | |
| "editor.bracketPairColorization.enabled": true, | |
| "liveServer.settings.donotVerifyTags": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment