Skip to content

Instantly share code, notes, and snippets.

@carina-akaia
Last active March 17, 2023 14:45
Show Gist options
  • Save carina-akaia/16c66946a7732bb7385237fcb2e23742 to your computer and use it in GitHub Desktop.
Save carina-akaia/16c66946a7732bb7385237fcb2e23742 to your computer and use it in GitHub Desktop.
VSCode config snapshot
{
"editor.semanticHighlighting.enabled": true,
"editor.tabSize": 2,
"editor.multiCursorModifier": "ctrlCmd",
"git.confirmSync": false,
"git.enableSmartCommit": false,
"editor.fontFamily": "'PragmataPro Mono Liga', monospace",
"terminal.integrated.fontFamily": "'PragmataPro Mono Liga', monospace",
"editor.fontSize": 18,
"terminal.integrated.fontSize": 16,
"editor.fontLigatures": "'calt', 'ss13'",
"editor.fontWeight": "300",
"workbench.fontAliasing": "antialiased",
"background.enabled": true,
"background.useDefault": false,
"background.style": {
"opacity": 0.14,
"background-position": "center",
"background-size": "cover",
},
"background.customImages": [
"/Users/karina/Documents/Images/bg.jpeg"
],
"editor.rulers": [
80,
100,
120
],
"editor.quickSuggestions": {
"strings": true
},
"tailwindCSS.includeLanguages": {
"plaintext": "html"
},
"windicss.colorDecoratorsType": "bg",
"windicss.enableColorDecorators": true,
"files.exclude": {
"**/.git": false
},
"window.restoreWindows": "all",
"window.title": "${dirty} 🦾🦊 ${folderPath}",
"terminal.integrated.tabs.hideCondition": "singleGroup",
"editor.matchBrackets": "always",
"explorer.confirmDragAndDrop": false,
"git-autoconfig.configList": [
{
"user.email": "carina@dmail.ai",
"user.name": "Akaia Carina | root.akaia.near#0878",
"user.website": "https://near.social/#/mob.near/widget/ProfilePage?accountId=root.akaia.near"
}
],
"workbench.editor.splitSizing": "split",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#151217",
"statusBar.background": "#000000",
"statusBar.foreground": "#31A6BF",
"editor.background": "#000000",
"editorPane.background": "#000000",
"editorGroupHeader.noTabsBackground": "#000000",
"editorGutter.background": "#000000",
"tab.unfocusedActiveBackground": "#000000",
"panel.background": "#000000",
"terminal.background": "#000000",
"dropdown.background": "#131313",
"debugExceptionWidget.background": "#131313",
"peekViewEditor.background": "#131313",
"peekViewResult.background": "#131313",
"peekViewTitle.background": "#131313",
"titleBar.activeBackground": "#131313",
"breadcrumb.background": "#131313",
"breadcrumbPicker.background": "#131313",
"activityBar.background": "#000000",
"sideBarSectionHeader.background": "#000000",
"sideBarSectionHeader.border": "#000000",
"tab.activeBackground": "#131313",
"editorWidget.background": "#000000",
"editorSuggestWidget.background": "#000000",
"editorHoverWidget.background": "#000000",
"editorGroupHeader.tabsBackground": "#000000",
"tab.inactiveBackground": "#000000",
"tab.border": "#131313",
"sideBar.background": "#000000",
"foreground": "#ffffff",
"tab.activeForeground": "#ffffff",
"tab.inactiveForeground": "#ffffff",
"scrollbarSlider.background": "#252525",
"scrollbarSlider.hoverBackground": "#323232",
"scrollbarSlider.activeBackground": "#252525",
"terminal.border": "#8d8d8d",
"menu.selectionBackground": "#ffffff",
"list.hoverBackground": "#1a1a1a",
"list.activeSelectionBackground": "#272727",
"editorOverviewRuler.border": "#252525",
"editorRuler.foreground": "#1a1a1a"
},
"window.titleBarStyle": "native",
"emptyIndent.removeIndent": true,
"emptyIndent.highlightIndent": true,
"emptyIndent.highlightColor": "rgba(246,36,89,0.6)",
"emptyIndent.exclude": [
".md"
],
"code-eol.style": {
"color": "gray",
"opacity": 0.4
},
"code-eol.newlineCharacter": "↙",
"gitlens.advanced.messages": {
"suppressCreatePullRequestPrompt": true,
"suppressFileNotUnderSourceControlWarning": true,
"suppressGitMissingWarning": true,
"suppressLineUncommittedWarning": true
},
"gitlens.keymap": "alternate",
"gitlens.currentLine.scrollable": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"disableLigatures.mode": "Line",
"workbench.startupEditor": "newUntitledFile",
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"git.ignoreMissingGitWarning": true,
"git.autofetch": true,
"editor.renderWhitespace": "boundary",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.enableBell": true,
"terminal.integrated.cursorBlinking": true,
"files.eol": "\n",
"editor.renderControlCharacters": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"git.untrackedChanges": "separate",
"gitlens.views.repositories.branches.layout": "list",
"workbench.tree.renderIndentGuides": "always",
"files.hotExit": "onExitAndWindowClose",
"editor.wordWrap": "off",
"calva.paredit.defaultKeyMap": "original",
"calva.evalOnSave": true,
"calva.highlight.enableBracketColors": false,
"calva.showDocstringInParameterHelp": true,
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports.rome": true
},
"[rust]": {
"editor.semanticHighlighting.enabled": false
},
"emmet.includeLanguages": {
"postcss": "css"
},
"files.associations": {
".asdfrc": "ini",
"*.css": "tailwindcss"
},
"[deno]": {
"editor.defaultFormatter": "denoland.vscode-deno",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "rome.rome",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "rome.rome",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.defaultFormatter": "rome.rome",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "rome.rome",
"editor.formatOnSave": true
},
"[svelte]": {
"editor.defaultFormatter": "rome.rome",
"editor.formatOnSave": true
},
"[yaml]": {
"editor.codeLens": true,
"editor.formatOnSave": true
},
"timeline.pageSize": 0,
"editor.suggestSelection": "first",
"git-graph.repository.commits.fetchAvatars": true,
"git-graph.graph.style": "angular",
"git-graph.enhancedAccessibility": true,
"git-graph.graph.colours": [
"#0085d9",
"#d9008f",
"#d98500",
"#a300d9",
"#ff0000",
"#00d9cc",
"#e138e8",
"#85d900",
"#dc5b23",
"#6f24d6",
"#ffcc00"
],
"gitPrefix.replacement": "$1",
"workbench.editor.pinnedTabSizing": "shrink",
"workbench.iconTheme": "emoji-file-icons",
"calva.prettyPrintingOptions": {
"enabled": true,
"printEngine": "pprint",
"width": 100,
"maxLength": 50
},
"gitlens.views.repositories.files.layout": "list",
"clojure.format.enable": false,
"clojure.replPort": 8777,
"[clojure]": {
"editor.defaultFormatter": "pedrorgirardi.vscode-cljfmt",
"editor.formatOnSave": true,
"editor.links": true,
"editor.wordSeparators": " ()\"':,;~@#$%^&{}[]`",
"editor.autoClosingBrackets": "beforeWhitespace",
"editor.autoClosingQuotes": "always",
"editor.formatOnType": true,
"editor.autoIndent": "full",
"editor.formatOnPaste": true,
"files.trimTrailingWhitespace": true,
"editor.matchBrackets": "never",
"editor.parameterHints.enabled": false
},
"cljfmt.removeSurroundingWhitespace": false,
"calva.fmt.newIndentEngine": false,
"editor.autoClosingBrackets": "beforeWhitespace",
"merge-conflict.autoNavigateNextConflict.enabled": true,
"javascript.preferences.quoteStyle": "double",
"path-intellisense.extensionOnImport": true,
"explorer.incrementalNaming": "smart",
"explorer.sortOrder": "filesFirst",
"editor.stickyTabStops": true,
"workbench.editor.wrapTabs": true,
"markdown-preview-enhanced.previewTheme": "solarized-dark.css",
"workbench.editor.tabCloseButton": "left",
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordWrap": "on",
"editor.wordWrapColumn": 120,
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"terminal.integrated.scrollback": 3000,
"editor.minimap.enabled": false,
"workbench.editor.untitled.hint": "hidden",
"vsicons.dontShowNewVersionMessage": true,
"vscode-neovim.neovimExecutablePaths.darwin": "/usr/local/bin/nvim",
"vscode-neovim.mouseSelectionStartVisualMode": true,
"terminal.integrated.profiles.osx": {
"bash": {
"path": "bash",
"args": [
"-l"
],
"icon": "terminal-bash"
},
"zsh": {
"path": "zsh",
"args": [
"-l"
]
},
"fish": {
"path": "/usr/local/bin/fish",
"args": [
"-l"
]
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
}
},
"terminal.integrated.defaultProfile.osx": "fish",
"javascript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.preferences.quoteStyle": "double",
"typescript.preferences.includePackageJsonAutoImports": "on",
"editor.definitionLinkOpensInPeek": true,
"editor.inlineSuggest.enabled": true,
"security.workspace.trust.untrustedFiles": "open",
"editor.minimap.maxColumn": 100,
"diffEditor.ignoreTrimWhitespace": false,
"redhat.telemetry.enabled": true,
"calva.showCalvaSaysOnStart": false,
"editor.formatOnSave": true,
"react-components.fileExtension": ".jsx",
"typescript.extension.sortImports.quoteStyle": "double",
"terminal.integrated.tabs.location": "left",
"githubPullRequests.defaultMergeMethod": "squash",
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.wordBasedSuggestions": false
},
"dart.flutterHotReloadOnSave": "all",
"dart.flutterCreateOrganization": "io.akaia",
"editor.unicodeHighlight.allowedLocales": {
"ru": true
},
"elixirLinter.useStrict": true,
"dart.flutterShowWebServerDevice": "always",
"nasc-touchbar.togglePanel": false,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"githubPullRequests.createOnPublishBranch": "never",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.guides.indentation": true,
"svelte.enable-ts-plugin": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"errorLens.followCursor": "allLinesExceptActive",
"errorLens.messageBackgroundMode": "message",
"errorLens.scrollbarHackEnabled": true,
"errorLens.margin": "1%",
"errorLens.gutterIconSet": "circle",
"tailwindCSS.rootFontSize": 17,
"workbench.editorAssociations": {
"*.png": "luna.editor",
"*.ico": "imagePreview.previewEditor"
},
"settingsSync.ignoredSettings": [
"-window.zoomLevel"
],
"window.restoreFullscreen": true,
"editor.unicodeHighlight.allowedCharacters": {
"’": true
},
"window.commandCenter": true,
"githubPullRequests.pullBranch": "never",
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.suggestSmartCommit": false,
"editor.stickyScroll.enabled": true,
"mergeEditor.diffAlgorithm": "experimental",
"workbench.colorTheme": "Outrunner",
"codeui.targetingMode": "general",
"editor.defaultFormatter": "vscode.debug-auto-launch",
"github.copilot.enable": {
"*": true,
},
"window.zoomLevel": -1,
"vs-kubernetes": {
"vscode-kubernetes.minikube-path.mac": "/Users/karina/.vs-kubernetes/tools/minikube/darwin-arm64/minikube"
},
"yaml.schemas": {
"file:///Users/karina/.vscode/extensions/atlassian.atlascode-3.0.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"cSpell.userWords": [
"Akaia",
"amet",
"ampm",
"appbar",
"appspot",
"appss",
"asdfrc",
"betanet",
"bgcolor",
"Blockies",
"borderless",
"cardspage",
"ceramicnetwork",
"clsx",
"corepack",
"croncat",
"daisyui",
"Daos",
"devkit",
"dialogopenrequested",
"dissoc",
"ecto",
"favicons",
"firebaseapp",
"fontawesome",
"formfactor",
"formik",
"fortawesome",
"guildnet",
"Helpdesk",
"hlpdesk",
"hookform",
"Horiz",
"imgx",
"INEAR",
"internaltest",
"ipfs",
"itms",
"jesteracer",
"juxt",
"konstructly",
"konstructlyapp",
"labelledby",
"linebreak",
"lootbox",
"lootboxes",
"loremipsum",
"Luxon",
"mainindex",
"Mintbase",
"Monoid",
"mousedown",
"multicall",
"Multicalls",
"nextjs",
"noindex",
"Nonenumerable",
"noopener",
"noreferrer",
"nslp",
"onaddressesupdated",
"onlayoutupdated",
"opencard",
"pnpm",
"preact",
"prefetch",
"Qrcode",
"reduxjs",
"reinitialization",
"remeda",
"roundbottom",
"roundtop",
"Shouty",
"spheregame",
"systemvars",
"tailwindcss",
"tanstack",
"techiediaries",
"testflight",
"tetriary",
"Tgas",
"translatey",
"tupled",
"twind",
"Uncategorized",
"Unconfigured",
"unreviewed",
"unstake",
"Unstaking",
"untupled",
"uploadcare",
"vitejs",
"vmin",
"webp",
"windicss",
"wnear",
"Xmark"
],
"git.openRepositoryInParentFolders": "never"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment