Skip to content

Instantly share code, notes, and snippets.

@kukiron
Last active August 23, 2026 15:28
Show Gist options
  • Select an option

  • Save kukiron/dc74e6c336b43e8137898540d0681f8c to your computer and use it in GitHub Desktop.

Select an option

Save kukiron/dc74e6c336b43e8137898540d0681f8c to your computer and use it in GitHub Desktop.
Latest VS Code Settings JSON (23 Aug, 2026)
{
"auto-rename-tag.activationOnLanguage": [
"html",
"xml",
"php",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
],
/** --- EDITOR --- **/
// "editor.bracketPairColorization.enabled": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorStyle": "line",
"editor.cursorBlinking": "phase",
// Google Sans mono currently used for Dart/Flutter
"editor.fontFamily": "Dank Mono, Liga IBM Plex Mono, Liga Recursive Mono Casual Static, JetBrains Mono Light, Liga Google-Sans-Mono, Liga DM Mono, Liga Apercu Mono, Fira Code iScript, Fira Code",
"editor.fontSize": 16,
"editor.fontWeight": "500",
"editor.lineHeight": 22,
// "editor.letterSpacing": 0.1,
"editor.fontLigatures": true,
// "editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09', 'liga', 'cv62', 'case'",
"editor.renderWhitespace": "none",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.tabSize": 2,
"editor.dragAndDrop": true,
// "editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.rulers": [100],
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"editor.suggest.preview": true,
"editor.minimap.showSlider": "always",
"editor.inlineSuggest.enabled": true,
"editor.linkedEditing": true,
"editor.accessibilitySupport": "off",
"editor.guides.bracketPairs": true,
/** --- EMMET --- **/
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"javascript": "jsx",
},
"emmet.includeLanguages": { "ejs": "html" },
/** --- PRETTIER --- **/
"prettier.singleQuote": true,
"prettier.semi": true,
"prettier.printWidth": 100,
// TODO: Enabled by default. But if Biome is used in the project, comment this out
"editor.defaultFormatter": "esbenp.prettier-vscode",
/** --- ESLint / BIOME --- **/
// Toggle based on project. If neither ESLint nor Biome is installed enable ESLint
// TODO: Toggle with Biome. If Biome is used in the project, comment this out
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
// TODO: Toggle with ESLint. If ESLint is used in the project, comment this out
// "biome.enabled": true,
// "editor.defaultFormatter": "biomejs.biome",
// "biome.lsp.bin": "./node_modules/.bin/biome",
/** --- EXPLORER --- **/
"explorer.confirmDragAndDrop": false,
/** --- FILES --- **/
// "files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.trunk/*out": true,
"**/node_modules": true,
},
/** --- GITLENS --- **/
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
},
"gitlens.keymap": "chorded",
/** --- JAVASCRIPT / TYPESCRIPT --- **/
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"js/ts.updateImportsOnFileMove.enabled": "always",
// Use project specific TypeScript version if available
// "js/ts.tsdk.path": "node_modules/typescript/lib",
"js/ts.tsdk.promptToUseWorkspaceVersion": true,
/** --- JEST --- **/
// "jest.autoEnable": false,
/** --- LIVE --- SERVER **/
// "liveServer.settings.donotVerifyTags": true,
/** --- TERMINAL --- **/
"terminal.integrated.fontFamily": "MesloLGS NF, Overpass Mono, Fira Code, SF Mono, Roboto Mono Medium, Liga Apercu Mono, Fira Code, Fira Code Medium, Liga Dank Mono Medium, Operator Mono Lig Medium",
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontWeight": "600",
"terminal.integrated.lineHeight": 1,
"terminal.integrated.letterSpacing": 0,
"terminal.integrated.cursorBlinking": true,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.rightClickBehavior": "paste",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.cursorStyle": "line",
// "terminal.integrated.defaultProfile.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
// "terminal.integrated.minimumContrastRatio": 2.5,
/** --- WINDOW --- **/
"window.titleBarStyle": "custom",
"window.zoomLevel": 0, // 0 is default, -1 is smaller, 1 is larger
"workbench.editor.tabSizing": "shrink",
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editorAssociations": {
"*.ipynb": "default",
},
"files.watcherExclude": {
"**/.trunk/*out": true,
},
/** PIECES: Not used anymore **/
// "pieces.cloudCapabilities": "Blended",
// "pieces.telemetry": true,
// "pieces.OS.autoLaunchOnInteraction": true,
// "pieces.OS.launchOnStartup": "Yes",
/** --- WORKBENCH --- **/
"workbench.tips.enabled": false,
"workbench.colorTheme": "Misty Meadows",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.useModal": "some",
"workbench.colorCustomizations": {},
/** <<--- OTHERS --->> **/
"codesnap.shutterAction": "save",
"react-native-tools.showUserTips": false,
"[python]": {
"editor.formatOnType": true,
},
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
},
/***** ----- MISCELLANEOUS ----- *****/
"security.promptForLocalFileProtocolHandling": false,
"redhat.telemetry.enabled": false,
// AI agent related settings
"inlineChat.affordance": "editor",
"chat.viewSessions.orientation": "stacked",
"json.schemaDownload.trustedDomains": {
"https://schemastore.azurewebsites.net/": true,
"https://raw.githubusercontent.com/microsoft/vscode/": true,
"https://raw.githubusercontent.com/devcontainers/spec/": true,
"https://www.schemastore.org/": true,
"https://json.schemastore.org/": true,
"https://json-schema.org/": true,
"https://developer.microsoft.com/json-schemas/": true,
"https://biomejs.dev": true,
},
"biome.suggestInstallingGlobally": false,
"yaml.disableSchemaDetection": [
"**/docker-compose.yml",
"**/docker-compose.yaml",
"**/docker-compose.*.yml",
"**/docker-compose.*.yaml",
"**/compose.yml",
"**/compose.yaml",
"**/compose.*.yml",
"**/compose.*.yaml",
"**/.github/workflows/*.yml",
"**/.github/workflows/*.yaml",
"**/.gitea/workflows/*.yml",
"**/.gitea/workflows/*.yaml",
"**/.forgejo/workflows/*.yml",
"**/.forgejo/workflows/*.yaml",
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment