Skip to content

Instantly share code, notes, and snippets.

@vadimpiven
Created April 20, 2026 20:04
Show Gist options
  • Select an option

  • Save vadimpiven/aae381ccded79d3953cc3ab76269d6ea to your computer and use it in GitHub Desktop.

Select an option

Save vadimpiven/aae381ccded79d3953cc3ab76269d6ea to your computer and use it in GitHub Desktop.
VSCode settings
{
// Editor
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.cursorBlinking": "solid",
"editor.cursorSmoothCaretAnimation": "off",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.find.seedSearchStringFromSelection": "selection",
"editor.find.autoFindInSelection": "multiline",
"editor.fontFamily": "JetBrains Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": "'calt' off",
"editor.fontSize": 14,
"editor.fontWeight": "380",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.lineHeight": 1.25,
"editor.renderLineHighlight": "gutter",
"editor.wordWrap": "on",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.guides.indentation": true,
"editor.guides.highlightActiveIndentation": true,
"editor.minimap.enabled": true,
"editor.minimap.autohide": "none",
"editor.stickyScroll.enabled": true,
"editor.inlayHints.enabled": "off",
"editor.inlineSuggest.enabled": false,
"editor.suggest.preview": false,
"search.smartCase": true,
// Workbench
"workbench.colorTheme": "Dark Modern",
"workbench.iconTheme": "vs-seti",
"workbench.sideBar.location": "right",
"workbench.panel.defaultLocation": "bottom",
"workbench.activityBar.location": "top",
// Files
"files.autoSave": "onFocusChange",
// Terminal
"terminal.integrated.fontFamily": "MesloLGS Nerd Font Mono",
"terminal.integrated.fontSize": 14,
"terminal.integrated.scrollback": 100000,
// Telemetry
"telemetry.telemetryLevel": "error",
// Git
"git.openRepositoryInParentFolders": "never",
// Explorer
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
// Extensions
"notebook.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.format.enable": true,
"cmake.configureOnOpen": true,
"cmake.showOptionsMovedNotification": false,
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^[ \\t]*(-|\\d+.))\\s*($TAGS)|todo!",
"lldb.suppressUpdateNotifications": true,
"http.systemCertificatesNode": true,
"json.schemaDownload.trustedDomains": {
"https://schemastore.azurewebsites.net/": true,
"https://raw.githubusercontent.com/": true,
"https://www.schemastore.org/": true,
"https://json.schemastore.org/": true,
"https://json-schema.org/": true
},
// Language-specific
"[json]": {
"editor.tabSize": 2
},
"[jsonc]": {
"editor.tabSize": 2
},
"[javascript]": {
"editor.tabSize": 2
},
"[typescript]": {
"editor.tabSize": 2
},
"[vue]": {
"editor.tabSize": 2
},
"redhat.telemetry.enabled": false,
"cSpell.userWords": [
"clonotype",
"Clonotypes",
"milaboratories",
"pframes",
"platforma",
"prerun",
"ptabler",
"tengo"
],
"python.languageServer": "Default",
"claudeCode.useTerminal": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment