Skip to content

Instantly share code, notes, and snippets.

@victorgabrielbs
Last active January 6, 2026 17:46
Show Gist options
  • Select an option

  • Save victorgabrielbs/2e61258597187eda38d08965a88cc556 to your computer and use it in GitHub Desktop.

Select an option

Save victorgabrielbs/2e61258597187eda38d08965a88cc556 to your computer and use it in GitHub Desktop.
{
"files.trimTrailingWhitespace": true,
"editor.fontSize": 15,
"editor.rulers": [
80
],
"files.associations": {
".env.*": "dotenv",
"*.fsproj": "xml"
},
"editor.renderLineHighlight": "gutter",
"editor.lineHeight": 26,
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.files.associations": {
"*.fsproj": "xml"
},
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"terminal.integrated.showExitAlert": false,
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"extensions.autoUpdate": false,
// "editor.acceptSuggestionOnCommitCharacter": false,
"explorer.compactFolders": false,
// "git.enableSmartCommit": true,
"editor.accessibilitySupport": "off",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": true,
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "FiraCode Nerd Font",
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"files.exclude": {
"**\/.git": true
},
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": true,
"update.mode": "start",
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"explorer.confirmPasteNative": false,
"editor.bracketPairColorization.enabled": false,
"[agda]": {
"editor.unicodeHighlight.ambiguousCharacters": false
},
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, bun.lock",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*"
},
"github.copilot.nextEditSuggestions.enabled": true,
"github.copilot.enable": {
"*": true,
},
"terminal.integrated.enableMultiLinePasteWarning": "never",
"workbench.colorTheme": "Bearded Theme Monokai Black",
// "debug.disassemblyView.showSourceCode": false,
"[shellscript]": {
// "editor.defaultFormatter": "timonwong.shellcheck",
// "editor.defaultFormatter": "foxundermoon.shell-format",
// "editor.defaultFormatter": "mkhl.shfmt"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.sortImports": "always",
"source.organizeImports": "explicit",
"source.fixAll": "explicit",
},
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, BreakBeforeBraces: Attach }",
"trailing-spaces.includeEmptyLines": true,
"trailing-spaces.highlightCurrentLine": true,
"files.trimFinalNewlines": true,
"cSpell.language": "en,pt-BR",
"[fsharp]": {
"editor.codeLens": false,
"editor.inlayHints.enabled": "off",
"editor.parameterHints.enabled": false,
},
"window.commandCenter": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment