Last active
November 25, 2023 16:45
-
-
Save heytulsiprasad/a186657b2125376765043979eabb87e4 to your computer and use it in GitHub Desktop.
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
| { | |
| "sync.gist": "c9c964ae99f2e35d5e2219b5dfd9b7ef", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "prettier.packageManager": "yarn", | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "workbench.colorCustomizations": {}, | |
| "editor.linkedEditing": true, | |
| "editor.tabSize": 2, | |
| "html.validate.scripts": false, | |
| "highlight.decorations": { | |
| "rangeBehavior": 3 | |
| }, | |
| "highlight.regexFlags": "gi", | |
| "highlight.maxMatches": 250, | |
| "highlight.regexes": { | |
| "(// TODO)(:)": [ | |
| { | |
| "backgroundColor": "#ff7dc0", | |
| "rangeBehavior": 1 | |
| } | |
| ], | |
| "(// NOTE)(:)": [ | |
| { | |
| "backgroundColor": "#faff00", | |
| "rangeBehavior": 1 | |
| } | |
| ], | |
| "(// TO ASK)(:)": [ | |
| { | |
| "backgroundColor": "#7df6ff", | |
| "rangeBehavior": 1 | |
| } | |
| ] | |
| }, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "debug.javascript.codelens.npmScripts": "never", | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "editor.formatOnPaste": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "Notes.notesLocation": "c:\\Users\\alexy\\Documents\\Notes", | |
| "stories.username": "evolutionary_Jennifer", | |
| "stories.flair": "react", | |
| "stories.ffmpeg-binary": "c:\\Users\\alexy\\Downloads/ffmpeg.exe", | |
| "editor.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "java.configuration.checkProjectSettingsExclusions": false, | |
| "java.refactor.renameFromFileExplorer": "preview", | |
| "workbench.editor.wrapTabs": true, | |
| "javascript.validate.enable": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "workbench.productIconTheme": "fluent-icons", | |
| "editor.fontLigatures": true, | |
| "diffEditor.maxComputationTime": 0, | |
| "terminal.integrated.tabs.enabled": true, | |
| "codestream.email": "tulsi.prasad50@gmail.com", | |
| "workbench.editorAssociations": { | |
| "git-rebase-todo": "default", | |
| "*.ipynb": "jupyter-notebook" | |
| }, | |
| "color-highlight.languages": ["*"], | |
| "flow.pathToFlow": "${workspaceFolder}/node_modules/.bin/flow", | |
| "terminal.integrated.defaultProfile.windows": "Git Bash", | |
| "terminal.integrated.profiles.windows": { | |
| "C:\\WINDOWS\\System32\\wsl.exe (migrated)": { | |
| "path": "C:\\WINDOWS\\System32\\wsl.exe", | |
| "args": [] | |
| } | |
| }, | |
| "better-comments.tags": [ | |
| { | |
| "tag": "!", | |
| "color": "#FF2D00", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "?", | |
| "color": "#3498DB", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| // { | |
| // "tag": "//", | |
| // "color": "#474747", | |
| // "strikethrough": true, | |
| // "underline": false, | |
| // "backgroundColor": "transparent", | |
| // "bold": false, | |
| // "italic": false | |
| // }, | |
| { | |
| "tag": "todo", | |
| "color": "#FF8C00", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "*", | |
| "color": "#98C379", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| } | |
| ], | |
| "python.showStartPage": false, | |
| "notebook.cellToolbarLocation": { | |
| "default": "right", | |
| "jupyter-notebook": "left" | |
| }, | |
| "thunder-client.codeSnippetLanguage": "cs-httpclient", | |
| "react-native-tools.showUserTips": false, | |
| "prettier.requireConfig": true, | |
| "css.lint.unknownAtRules": "ignore", | |
| "prettier.endOfLine": "auto", | |
| "bracketPairColorizer.depreciation-notice": false, | |
| "workbench.colorTheme": "Dracula At Night", | |
| "prettier.configPath": ".prettierrc", | |
| "prettier.tabWidth": 1, | |
| "editor.formatOnSave": true, | |
| "editor.accessibilitySupport": "off", | |
| "editor.inlineSuggest.enabled": true, | |
| "[python]": { | |
| "editor.formatOnType": true | |
| }, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": false, | |
| "markdown": false, | |
| "scminput": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment