Created
September 13, 2025 02:43
-
-
Save mrlinnth/414174ab07354306e5d25d69d0d9ca42 to your computer and use it in GitHub Desktop.
[VSCode settings] Files under $HOME/.config/Code/User
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
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "ctrl+alt+l", | |
| "command": "-BracketHighlighter.toggleExtensionStatus", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+alt+l", | |
| "command": "extension.insertLogStatement", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+l", | |
| "command": "-extension.insertLogStatement", | |
| "when": "editorTextFocus" | |
| } | |
| ] |
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
| { | |
| "chat.commandCenter.enabled": false, | |
| "explorer.autoReveal": true, | |
| "explorer.confirmDelete": false, | |
| "window.zoomLevel": 1, | |
| "window.menuBarVisibility": "compact", | |
| "workbench.colorTheme": "Dracula Theme", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.foldingStrategy": "indentation", | |
| "editor.fontFamily": "FiraCode Nerd Font", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 15, | |
| "editor.formatOnSave": true, | |
| "editor.linkedEditing": true, | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": "explicit", | |
| "source.fixAll": "explicit", | |
| "source.fixAll.eslint": "explicit" | |
| }, | |
| "files.autoSave": "onFocusChange", | |
| "files.exclude": { | |
| "**/.classpath": true, | |
| "**/.project": true, | |
| "**/.settings": true, | |
| "**/.factorypath": true, | |
| "**/.git": true, | |
| "**/.DS_Store": true, | |
| "**/.vscode": true, | |
| "**/__pycache__": true, | |
| "**/.pytest_cache": true, | |
| "**/node_modules": true, | |
| "node_modules": true, | |
| "venv": true, | |
| "*.sublime-*": true, | |
| "env*": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/**": true, | |
| "**/env/**": true, | |
| "**/venv/**": true, | |
| "env-*": true | |
| }, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/env": true, | |
| "**/venv": true | |
| }, | |
| "git.enableSmartCommit": true, | |
| "git.autofetch": true, | |
| "git.confirmSync": false, | |
| "gitlens.views.scm.grouped.views": { | |
| "commits": false, | |
| "branches": false, | |
| "remotes": false, | |
| "stashes": false, | |
| "tags": false, | |
| "worktrees": false, | |
| "contributors": false, | |
| "repositories": false, | |
| "searchAndCompare": false, | |
| "launchpad": false | |
| }, | |
| "namespaceResolver.sortAlphabetically": true, | |
| "laravel-pint.enable": true, | |
| "emeraldwalk.runonsave": { | |
| "commands": [ | |
| { | |
| // Run whenever php files are saved | |
| "match": ".php", | |
| "cmd": "ddev php ./vendor/bin/pint" | |
| } | |
| ] | |
| }, | |
| "remote.SSH.defaultExtensions": ["gitpod.gitpod-remote-ssh"], | |
| "remote.SSH.configFile": "~/.ssh/config", | |
| "remote.SSH.remotePlatform": { | |
| "alphasiriusiose-reactcos-a5nxs4kxnrl": "linux", | |
| "urban-uat": "linux", | |
| "urban-uat-frontend": "linux", | |
| "zatt-prod": "linux", | |
| "zatt-v1-prod": "linux", | |
| "server2-runcloud": "linux", | |
| "mmso-beta": "linux", | |
| "zatt-v2-runcloud": "linux", | |
| "server3-heguru-backend": "linux", | |
| "slmmyanmar-runcloud": "linux" | |
| }, | |
| "javascript.format.enable": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.preferences.importModuleSpecifier": "non-relative", | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "yaml.schemas": { | |
| "/home/yan/.vscode/extensions/continue.continue-1.0.19-linux-x64/config-yaml-schema.json": [ | |
| ".continue/**/*.yaml" | |
| ] | |
| }, | |
| "[php]": { | |
| "editor.defaultFormatter": "open-southeners.laravel-pint", | |
| "editor.formatOnSave": true | |
| }, | |
| "[markdown]": { | |
| "editor.formatOnSave": false | |
| }, | |
| "[plaintext]": { | |
| "editor.wordWrap": "on", | |
| "editor.unicodeHighlight.ambiguousCharacters": false, | |
| "editor.unicodeHighlight.invisibleCharacters": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment