Created
June 26, 2023 16:39
-
-
Save XavierChanth/24d2da669c1cf51df4316f6796089f88 to your computer and use it in GitHub Desktop.
My 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
{ | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "redhat.vscode-yaml" | |
}, | |
"C_Cpp.default.cppStandard": "c++17", | |
"C_Cpp.default.cStandard": "c99", | |
"cmake.configureOnEdit": false, | |
"cmake.configureOnOpen": false, | |
"dart.lineLength": 120, | |
"dart.runPubGetOnPubspecChanges": "never", | |
"diffEditor.maxFileSize": 0, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"editor.fontFamily": "'Fira Code Retina', 'Fira Code', Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.guides.bracketPairs": true, | |
"editor.guides.bracketPairsHorizontal": true, | |
"editor.guides.highlightActiveIndentation": true, | |
"editor.inlineSuggest.enabled": true, | |
"editor.minimap.size": "fill", | |
"editor.renderWhitespace": "all", | |
"editor.rulers": [80, 120], | |
"editor.tabSize": 2, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.fileNesting.enabled": true, | |
"explorer.fileNesting.expand": false, | |
"explorer.fileNesting.patterns": { | |
"CMakeLists.txt": "CMakeFiles, CMakeCache.txt, cmake_install.cmake", | |
"melos.yaml": "melos_*.iml", | |
"package.json": "package-lock.json, yarn.lock, .hugo_build.lock, hugo_stats.json", | |
"pubspec.yaml": ".packages, .metadata, pubspec.lock, analysis_options.yaml, melos_*.iml", | |
"README.md": "CONTRIBUTING.md, code_of_conduct.md, LICENSE, CHANGELOG.md, SECURITY.md" | |
}, | |
"explorer.incrementalNaming": "smart", | |
"explorer.sortOrder": "type", | |
"files.autoSave": "afterDelay", | |
"files.exclude": { | |
"**/.git": false | |
}, | |
"git.confirmSync": false, | |
"git.enableCommitSigning": true, | |
"git.inputValidationLength": 100, | |
"git.inputValidationSubjectLength": 100, | |
"git.openDiffOnClick": false, | |
"git.suggestSmartCommit": false, | |
"github.copilot.enable": { | |
"*": true, | |
"dart": true, | |
"markdown": false, | |
"plaintext": false, | |
"yaml": true | |
}, | |
"githubPullRequests.pullBranch": "never", | |
"html.format.indentHandlebars": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"lldb.library": "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB", | |
"notebook.output.textLineLimit": 200, | |
"platformio-ide.autoOpenPlatformIOIniFile": false, | |
"platformio-ide.autoRebuildAutocompleteIndex": false, | |
"redhat.telemetry.enabled": false, | |
"remote.SSH.remotePlatform": { | |
"playpen-xavier-1": "linux" | |
}, | |
"scm.defaultViewMode": "tree", | |
"scm.diffDecorationsIgnoreTrimWhitespace": "true", | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"search.exclude": { | |
"**/node_modules": false | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"svg.preview.mode": "svg", | |
"telemetry.telemetryLevel": "off", | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.defaultProfile.osx": "zsh", | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"terminal.integrated.enableMultiLinePasteWarning": false, | |
"terminal.integrated.fontFamily": "'Fira Code Retina', 'Fira Code', monospace", | |
"terminal.integrated.profiles.windows": { | |
"Command Prompt": { | |
"args": [], | |
"icon": "terminal-cmd", | |
"path": [ | |
"${env:windir}\\Sysnative\\cmd.exe", | |
"${env:windir}\\System32\\cmd.exe" | |
] | |
}, | |
"Git Bash": { | |
"args": [], | |
"source": "Git Bash" | |
}, | |
"PowerShell": { | |
"icon": "terminal-powershell", | |
"source": "PowerShell" | |
} | |
}, | |
"window.autoDetectColorScheme": true, | |
"window.title": "${rootName}", | |
"window.zoomLevel": 2, | |
"workbench.enableExperiments": false, | |
"workbench.preferredDarkColorTheme": "Atom One Dark", | |
"workbench.preferredLightColorTheme": "Snazzy Light", | |
"workbench.startupEditor": "none", | |
"workbench.tree.indent": 16, | |
"workbench.tree.renderIndentGuides": "always", | |
"workbench.colorTheme": "Snazzy Light", | |
"workbench.productIconTheme": "bootstrap-product-icons" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment