Skip to content

Instantly share code, notes, and snippets.

@techitesh
Last active June 20, 2023 19:41
Show Gist options
  • Save techitesh/bd2d443b9f0b6fa1c9ba250b75659819 to your computer and use it in GitHub Desktop.
Save techitesh/bd2d443b9f0b6fa1c9ba250b75659819 to your computer and use it in GitHub Desktop.
VS code settings
{
"terminal.integrated.fontFamily": "MesloLGS NF",
"workbench.iconTheme": "material-icon-theme",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"dart.openDevTools": "flutter",
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": false,
"json.schemas": [],
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"explorer.compactFolders": false,
"files.autoSave": "afterDelay",
"liveServer.settings.donotVerifyTags": true,
"workbench.editorAssociations": {
"*.ttf": "default"
},
"bracketPairColorizer.depreciation-notice": false,
"bracket-pair-colorizer-2.depreciation-notice": false,
"editor.formatOnSave": true,
"editor.suggest.showMethods": true,
"editor.suggest.preview": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.snippetSuggestions": "top",
"tabnine.experimentalAutoImports": true,
"reactSnippets.settings.prettierEnabled": true,
"html.format.enable": false,
"window.zoomLevel": 1,
"git.openRepositoryInParentFolders": "never",
"typescript.updateImportsOnFileMove.enabled": "always",
"cSpell.userWords": ["codegen", "STCW", "testid"],
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"[typescriptreact]": {},
"go.toolsManagement.autoUpdate": true,
"[typescript]": {},
"todo-tree.highlights.defaultHighlight": {
"gutterIcon": true
},
"todo-tree.general.tags": ["NOTE", "TODO", "FIXME", "MARK", "[ ]", "[x]"],
"todo-tree.highlights.customHighlight": {
"NOTE": {
"background": "#FFA500",
"iconColour": "#FFA500",
"icon": "file"
},
"TODO": {
"background": "#FFD703",
"iconColour": "#FFD703",
"icon": "tasklist"
},
"FIXME": {
"background": "#FF01FF",
"iconColour": "#FF01FF",
"icon": "bug"
},
"MARK": {
"background": "#157EFB",
"iconColour": "#157EFB",
"icon": "tag"
},
"[ ]": {
"background": "#ff000080",
"iconColour": "#ff000080",
"icon": "square"
},
"[x]": {
"background": "#00ff0080",
"iconColour": "#00ff0080",
"icon": "square-fill"
}
},
"todo-tree.regex.regex": "((\\*|//|#|<!--|;|/\\*|^)\\s*($TAGS)|^\\s*- \\[ \\])",
"todo-tree.tree.grouped": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment