Skip to content

Instantly share code, notes, and snippets.

@en3sis
Created January 10, 2023 09:47
Show Gist options
  • Save en3sis/495f08e98c7eaee656465a1e3058c220 to your computer and use it in GitHub Desktop.
Save en3sis/495f08e98c7eaee656465a1e3058c220 to your computer and use it in GitHub Desktop.
settings for VSC
{
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.linkedEditing": true,
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"editor.bracketPairColorization.enabled": true,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"git.autofetch": true,
"css.validate": false,
"editor.fontWeight": "400",
"editor.scrollbar.verticalScrollbarSize": 6,
"workbench.colorCustomizations": {
// Learn more at https://code.visualstudio.com/api/references/theme-color
"[One Hunter Theme Vercel]": {
// Tabs
"tab.activeBorderTop": "#7BCEBA",
"tab.activeBackground": "#161616",
"titleBar.inactiveForeground": "#ffffff",
// Words
"editor.wordHighlightBorder": "#61AFEF",
"editor.wordHighlightStrongBorder": "#7BCEBA",
"editor.selectionBackground": "#0bf0b377",
"editor.findMatchHighlightBorder": "#ffffffa2",
"editorWhitespace.foreground": "#202020",
// Lists
"list.inactiveSelectionBackground": "#39817291",
"list.dropBackground": "#d20b5e",
"editorCursor.foreground": "#ffff00",
// Widgets
"editorSuggestWidget.background": "#191616",
"editorWidget.background": "#191616",
"list.activeSelectionBackground": "#39817291",
// Debug
"statusBar.debuggingBackground": "#d20b7841",
"statusBar.debuggingForeground": "#fff",
"debugToolBar.background": "#202020",
// "activityBar.background": "#161616",
// "editorSuggestWidget.selectedBackground": "#7BCEBA"
},
"[GitHub Dark]": {
"editorWhitespace.foreground": "#2B3138"
},
"[Monokai Pro (Filter Ristretto)]": {
"editorWhitespace.foreground": "#332f2f",
"terminal.foreground": "#f3f3f3",
"terminal.background": "#383030"
},
"list.inactiveFocusBackground": "#0000"
},
"workbench.startupEditor": "newUntitledFile",
"breadcrumbs.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.autoClosingQuotes": "beforeWhitespace",
"files.trimFinalNewlines": true,
"editor.renderWhitespace": "boundary",
"diffEditor.ignoreTrimWhitespace": true,
"editor.multiCursorModifier": "ctrlCmd",
"javascript.format.insertSpaceAfterConstructor": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.insertSpaces": true,
"editor.smoothScrolling": true,
"workbench.editor.showTabs": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.preferences.quoteStyle": "single",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"go.lintOnSave": "off",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
//exludes fies & folders for watcher service
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "storage.type.class.jsdoc",
"scope": "storage.type.class.jsdoc",
"settings": {
"foreground": "#cd93e1"
}
},
{
"name": "storage.type.class.jsdoc",
"scope": "entity.name.type.instance.jsdoc,variable.other.jsdoc",
"settings": {
"foreground": "#7874c6"
}
}
]
},
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"workbench.list.smoothScrolling": true,
"markdown.preview.fontSize": 13,
// "editor.semanticTokenColorCustomizations": null,
"git.suggestSmartCommit": false,
// "editor.snippetSuggestions": "top",
"window.newWindowDimensions": "inherit",
"highlight.regexes": {
"(// ?TODO:?)(.*)": [
{
"overviewRulerColor": "#ffcc00",
"backgroundColor": "#ffcc00",
"color": "#1f1f1f",
"fontWeight": "bold"
},
{
"backgroundColor": "#d9ad00",
"color": "#1f1f1f"
}
],
"(// ?FIX:?)(.*)": [
{
"overviewRulerColor": "#ff0000",
"backgroundColor": "#ff0000",
"color": "#1f1f1f",
"fontWeight": "bold"
},
{
"backgroundColor": "#d90000",
"color": "#1f1f1f"
}
],
"(// ?BUG:?)(@\\w+)": [
{
"overviewRulerColor": "#ff0000",
"backgroundColor": "#ff0000",
"color": "#1f1f1f",
"fontWeight": "bold"
},
{
"backgroundColor": "#d90000",
"color": "#1f1f1f"
}
],
"(// ?INFO:?)(.*)": [
{
"overviewRulerColor": "#43b1e5",
"backgroundColor": "#43b1e5",
"color": "#1f1f1f",
"fontWeight": "bold"
},
{
"backgroundColor": "#43b1e5",
"color": "#1f1f1f"
}
]
},
"workbench.editor.pinnedTabSizing": "compact",
"emmet.syntaxProfiles": {
"html": {
"attr_quotes": "single"
},
"js": {
"attr_quotes": "single",
"self_closing_tag": true
},
"jsx": {
"attr_quotes": "single",
"self_closing_tag": true
}
},
"search.smartCase": true,
"debug.javascript.autoAttachFilter": "disabled",
"editor.letterSpacing": 0.6,
"editor.lineHeight": 18,
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": true,
// For Prettier
"source.fixAll.prettier": true,
// For TSLint
"source.fixAll.tslint": true,
// For Stylelint
"source.fixAll.stylelint": true,
// Generics
"source.organizeImports": true
},
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
"javascript.format.insertSpaceAfterSemicolonInForStatements": false,
"typescript.format.insertSpaceAfterTypeAssertion": true,
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"prettier.singleQuote": true,
"prettier.semi": false,
"typescript.preferences.quoteStyle": "single",
"python.formatting.autopep8Args": ["--max-line-length", "120", "--experimental", "--indent-size=2"],
"gitlens.views.branches.branches.layout": "list",
"prettier.printWidth": 120,
"prettier.jsxSingleQuote": true,
"prettier.trailingComma": "none",
"terminal.integrated.defaultProfile.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"[javascript, typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.tabs.enabled": true,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true,
"javascriptreact": true,
"typescriptreact": true,
"typescript": true
},
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"javascript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"python.defaultInterpreterPath": "/usr/local/bin/python3",
"editor.quickSuggestions": {
"strings": true
},
"tailwindCSS.emmetCompletions": true,
"zenMode.hideTabs": false,
"workbench.productIconTheme": "fluent-icons",
"editor.minimap.enabled": false,
"html.completion.attributeDefaultValue": "singlequotes",
"typescript.format.insertSpaceAfterConstructor": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"cSpell.userWords": [
"autofetch",
"cryptomines",
"discordjs",
"nextauth",
"nextwind",
"psutil",
"regexes",
"supabase",
"suprabase",
"tailwindcss",
"Thirdweb",
"unauthorised",
"wagmi",
"websockets",
"zustand"
],
"editor.accessibilitySupport": "off",
"workbench.editor.historyBasedLanguageDetection": true,
"workbench.colorTheme": "One Hunter Theme Vercel",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"html.format.wrapLineLength": 100,
"go.toolsManagement.autoUpdate": true,
"git.mergeEditor": true,
"window.commandCenter": true,
"redhat.telemetry.enabled": false,
"terminal.integrated.smoothScrolling": false,
"turboConsoleLog.quote": "'",
"quokka.compactMessageOutput": false,
"quokka.automaticRestart": true,
"terminal.integrated.fontFamily": "JetBrains Mono",
"docker.images.label": "CreatedTime",
"editor.fontSize": 13,
"prettier.requireConfig": true,
"workbench.iconTheme": "Monokai Pro (Filter Octagon) Icons",
"editor.scrollbar.horizontal": "hidden",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"[sql]": {
"editor.defaultFormatter": "mtxr.sqltools"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment