Skip to content

Instantly share code, notes, and snippets.

@nyxb
Created March 2, 2023 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nyxb/49ce223832b578f98e108197e2789c5c to your computer and use it in GitHub Desktop.
Save nyxb/49ce223832b578f98e108197e2789c5c to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"files.eol": "\n",
"workbench.iconTheme": "material-icon-theme",
"security.workspace.trust.untrustedFiles": "open",
"bracket-pair-colorizer-2.depreciation-notice": false,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": ["-NoLogo"]
}
},
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.fontFamily": "DaddyTimeMono NF",
"editor.fontFamily": "MonoLisa",
"terminal.integrated.allowMnemonics": true,
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"workbench.startupEditor": "none",
"deno.suggest.autoImports": false,
"deno.suggest.names": false,
"deno.suggest.imports.autoDiscover": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
// "editor.autoClosingBrackets": "languageDefined"
},
"workbench.productIconTheme": "material-product-icons",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
// "editor.autoClosingBrackets": "languageDefined"
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"typescript.tsserver.log": "verbose",
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"switch:command",
"push:command"
],
"explorer.compactFolders": false,
"netlify.api_token": "8cpDCAZyWCpcqBys7OBJgNXhhUXz8mIhqVQgMBnWIDc",
"netlify.site_id": "admiring-kare-385df3.netlify.app",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitmoji.showEmojiCode": true,
"gitlens.hovers.annotations.over": "annotation",
"gitlens.defaultDateFormat": "DD.MM.YYYY HH:mm",
"gitlens.defaultDateShortFormat": "DD.MMM.YYYY",
"gitlens.defaultTimeFormat": "HH:mm",
"gitlens.currentLine.format": "${message|50? • }${author, }${agoOrDate}${' via 'pullRequest}",
"gitlens.codeLens.scopes": ["document", "containers", "blocks"],
"prettier.singleQuote": true,
"prettier.configPath": ".prettierrc",
"typescript.updateImportsOnFileMove.enabled": "always",
"material-icon-theme.activeIconPack": "react_redux",
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.folders.color": "#00eeff",
"material-icon-theme.folders.associations": {
"guild": "discord",
"infrastructure": "Cluster",
"structures": "Cluster",
"stripe": "Resource",
"developer": "Src",
"moderation": "Project",
"systems": "Core",
"ticket system": "Container",
"interaction": "Contract",
"message": "Content",
"ticket": "Cart",
"voice": "log",
"shemas": "Content",
"Buttons": "Examples",
"slashCommands": "Command",
"botconfig": "Config"
},
"better-comments.highlightPlainText": true,
"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": "#e9dc43",
"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
}
],
"GitLive.Issue tracker integration": "Enabled",
"editor.inlineSuggest.enabled": true,
"conventionalCommits.emojiFormat": "emoji",
"conventionalCommits.promptCI": true,
"workbench.sideBar.location": "right",
"github.copilot.enable": {
"enabled": true,
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true
},
"github.copilot.advanced": {},
"javascript.updateImportsOnFileMove.enabled": "always",
"vue3snippets.enable-compile-vue-file-on-did-save-code": true,
"vue3snippets.semi": false,
"vue3snippets.singleQuote": true,
"vue3snippets.tabWidth": 4,
"vue3snippets.useTabs": true,
"vue3snippets.vueIndentScriptAndStyle": true,
"workbench.editor.enablePreview": false,
"[scss]": {
"editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter"
},
"debug.allowBreakpointsEverywhere": true,
//! minimal config
// Disable telemetry
"telemetry.telemetryLevel": "off",
// Zen mode
"zenMode.fullScreen": false,
"zenMode.hideTabs": true,
"zenMode.centerLayout": false,
// Theming
"editor.fontLigatures": true,
"window.autoDetectColorScheme": false,
"editor.codeLensFontSize": 13,
"editor.fontSize": 13,
"editor.lineHeight": 1.75,
"editor.suggestFontSize": 13,
"editor.suggestLineHeight": 28,
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1,
"debug.console.fontSize": 10,
"window.zoomLevel": 1,
"editor.minimap.enabled": false,
"editor.glyphMargin": true,
"editor.folding": true,
//"editor.lineNumbers": "off",
"workbench.editor.showTabs": true,
"workbench.editor.pinnedTabSizing": "compact",
"workbench.editor.tabSizing": "shrink",
"workbench.welcomePage.walkthroughs.openOnInstall": false,
"breadcrumbs.enabled": false,
"editor.lightbulb.enabled": false,
"editor.overviewRulerBorder": false,
"editor.renderLineHighlight": "line",
"editor.renderControlCharacters": false,
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleDeclarations": "goto",
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"volar.icon.splitEditors": false,
// Theme-specific UI
"diffEditor.renderSideBySide": false,
"editor.copyWithSyntaxHighlighting": false,
"editor.snippetSuggestions": "bottom",
"editor.tabSize": 4,
"editor.detectIndentation": true,
"editor.multiCursorModifier": "ctrlCmd",
"files.insertFinalNewline": true,
"window.nativeFullScreen": true,
"window.newWindowDimensions": "inherit",
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.tabCloseButton": "off",
// Search
"search.smartCase": true,
"search.useIgnoreFiles": false,
"search.exclude": {
"**/vendor/*": true,
"**/public/*": true,
"**/node_modules": true,
"**/dist": true,
"**/package-lock.json": true,
"**/yarn.lock": true
},
// Code
// Include "-" in word selection.
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.wordWrap": "on",
"editor.tabCompletion": "on",
"explorer.openEditors.visible": 0,
// Files to display
"window.title": "ㅤ",
// "git.decorations.enabled": false,
// "scm.diffDecorationsGutterVisibility": "hover",
// "scm.diffDecorations": "none",
"editor.semanticHighlighting.enabled": true,
"editor.linkedEditing": true,
"editor.bracketPairColorization.enabled": true,
// Suggestions
"editor.acceptSuggestionOnEnter": "smart",
"editor.quickSuggestions": {
"strings": true
},
"editor.suggestSelection": "first",
"editor.suggest.showWords": false,
"emmet.showAbbreviationSuggestions": false,
"javascript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.suggest.completeFunctionCalls": true,
"editor.guides.indentation": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"workbench.colorTheme": "Vidar",
"window.menuBarVisibility": "compact",
"editor.guides.bracketPairs": "active",
"editor.autoClosingBrackets": "always",
"workbench.layoutControl.enabled": false,
"GitLive.Hide my activity graph": true,
// Customize UI
"customizeUI.stylesheet": {
".tabs-and-actions-container": {
"background-color": "inherit"
},
".tabs-and-actions-container .editor-actions": {
"position": "absolute",
"top": "100%",
"right": "0px",
"height": "22px !important",
"z-index": "1",
"background-color": "inherit"
},
".tabs-and-actions-container .editor-actions .action-item": {
"margin-right": "3px !important"
},
".tabs-and-actions-container .editor-actions .action-item a": {
"font-size": "13px"
},
".tabs-and-actions-container .editor-actions .action-item .codicon": {
"width": "13px",
"height": "13px"
},
".tabs-and-actions-container .tab:last-child": {
"margin-right": "0 !important"
},
".title.tabs.show-file-icons": {
"overflow": "unset !important"
},
".window-appicon": {
"width": "0px !important"
},
"window.titleBarStyle": "native",
"customizeUI.titleBar": "inline",
"customizeUI.activityBar": "wide"
},
// Background
"background.enabled": true,
"background.loop": false,
"background.useDefault": false,
"background.useFront": false,
"background.style": {
"content": "''",
"pointer-events": "none",
"position": "absolute",
"background-margin-right": "20px",
"z-index": "99999",
"width": "100%",
"height": "100%",
"background-size": "150px 150px",
"background-repeat": "no-repeat"
},
"background.customImages": ["https://i.imgur.com/GPPqXru.png"],
"remote.SSH.defaultExtensions": ["gitpod.gitpod-remote-ssh"],
"remote.SSH.configFile": "C:\\Users\\vidar\\AppData\\Local\\Temp\\gitpod_ssh_config-12200-MY0IUGn4JDiq",
"remote.SSH.remotePlatform": {
"vbenjs-vuevbenadmin-xhf92mko3r3": "linux"
},
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"files.associations": {
"*.yml": "yaml"
},
// Cycler Keybindings
"settings.cycle": [
{
"id": "lineNumbers",
"values": [
{
"editor.lineNumbers": "off",
"editor.folding": false,
"editor.glyphMargin": false
},
{
"editor.lineNumbers": "on",
"editor.folding": true,
"editor.glyphMargin": true
}
]
}
],
"editor.lineNumbers": "on",
"svelte.enable-ts-plugin": true,
"totalTypeScript.hideAllTips": false,
"totalTypeScript.hideBasicTips": false,
"explorer.confirmDragAndDrop": false,
"workbench.activityBar.visible": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment