Skip to content

Instantly share code, notes, and snippets.

@victorgabrielbs
Last active December 12, 2025 05:11
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.
{
"search.exclude": {
"out*/**": true,
"build/**": true,
"**/*.build": true,
"**/*.log": true,
"**/*.dist": true,
"**/.DS_Store": true,
"**/*.git": true,
"**/.opam": true
},
"files.trimTrailingWhitespace": true,
"editor.fontSize": 15,
"editor.rulers": [
80
],
"files.associations": {
".env.*": "dotenv",
"*.fsproj": "xml"
},
"editor.parameterHints.enabled": false,
"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": 2,
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
// "editor.defaultFormatter": "ms-python.black-formatter",
},
"pylint.args": [
"--disable=C0114",
"--disable=C0116"
],
"black-formatter.args": [
"--line-length",
"80"
],
"security.workspace.trust.untrustedFiles": "newWindow",
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.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,
"[c], [c++]": {
"cmake.pinnedCommands": [
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask"
],
"mesonbuild.downloadLanguageServer": true,
"cmake.showOptionsMovedNotification": false,
"makefile.configureOnOpen": true,
},
"workbench.startupEditor": "none",
"debug.onTaskErrors": "abort", // or "nixd"
"[agda]": {
"editor.unicodeHighlight.ambiguousCharacters": false
},
"[haskell]": {
"haskell.manageHLS": "GHCup",
},
"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": {
"*": false,
},
"[asm]": {
"asm-lsp": {
"command": "asm-lsp",
"filetypes": [
"asm",
"s",
"S"
]
},
},
"terminal.integrated.enableMultiLinePasteWarning": "never",
"workbench.colorTheme": "Bearded Theme Monokai Black",
"[julia]": {
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"julia.symbolCacheDownload": true,
"julia.enableTelemetry": false,
},
"d.dubCompiler": "dmd",
// "debug.disassemblyView.showSourceCode": false,
"[shellscript]": {
// "editor.defaultFormatter": "timonwong.shellcheck",
// "editor.defaultFormatter": "foxundermoon.shell-format",
// "editor.defaultFormatter": "mkhl.shfmt"
},
// "remote.autoForwardPortsSource": "hybrid",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.sortImports": "always",
"source.organizeImports": "explicit"
},
"[ocaml]": {
"editor.formatOnSave": false,
},
"redhat.telemetry.enabled": false,
"ocaml.useOcamlEnv": false,
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, BreakBeforeBraces: Attach }",
"trailing-spaces.includeEmptyLines": true,
"trailing-spaces.highlightCurrentLine": true,
"files.trimFinalNewlines": true,
"cSpell.language": "en,pt,pt-BR",
"[fsharp]": {
"editor.codeLens": false,
"editor.inlayHints.enabled": "off",
"editor.tabSize": 4,
"editor.insertSpaces": true
},
"FSharp.lineLens.enabled": "never",
"[java]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
},
"java.debug.settings.forceBuildBeforeLaunch": true,
"java.debug.settings.showHex": true,
"java.debug.settings.hotCodeReplace": "auto",
"window.commandCenter": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment