Skip to content

Instantly share code, notes, and snippets.

@gabrielgatu
Last active March 19, 2024 16:49
Show Gist options
  • Save gabrielgatu/0512255e062255354e8e96b71caa8dcc to your computer and use it in GitHub Desktop.
Save gabrielgatu/0512255e062255354e8e96b71caa8dcc to your computer and use it in GitHub Desktop.
{
// terminal
"terminal.integrated.drawBoldTextInBrightColors": true,
"terminal.integrated.windowsEnableConpty": false,
"terminal.integrated.rendererType": "canvas",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 14,
// "terminal.integrated.fontFamily": "ubuntu mono, iosevka",
"terminal.integrated.fontWeight": "200",
"terminal.integrated.fontWeightBold": "400",
// editor
"editor.cursorSurroundingLinesStyle": "all",
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.smoothScrolling": false,
"editor.lineNumbers": "on",
"editor.cursorStyle": "line",
"editor.rulers": [120],
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"editor.codeLens": false,
"editor.scrollBeyondLastLine": true,
"editor.folding": true,
"editor.formatOnSave": true,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.fontSize": 14.5,
// "editor.letterSpacing": -0.2,
"editor.lineHeight": 20,
"editor.fontFamily": "monaco, ubuntu mono, cascadia code, iosevka",
"editor.multiCursorModifier": "alt",
"editor.lightbulb.enabled": false,
"editor.rename.enablePreview": true,
"editor.accessibilitySupport": "off",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
// workbench
"zenMode.fullScreen": false,
"workbench.editor.tabSizing": "fit",
"workbench.editor.showTabs": false,
"workbench.editor.tabCloseButton": "off",
"workbench.editor.showIcons": false,
"workbench.statusBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"workbench.panel.defaultLocation": "bottom",
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": false,
"breadcrumbs.enabled": false,
// speed up indexing
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/target/**": true,
"**/build/**": true
},
// other stuff
"formate.verticalAlignProperties": false,
"editor.wordWrap": "on",
"kotlin.compiler.jvm.target": "1.8",
"explorer.autoReveal": false,
"explorer.openEditors.visible": 0,
"explorer.confirmDragAndDrop": true,
"explorer.confirmDelete": true,
"update.mode": "start",
"files.insertFinalNewline": false,
"extensions.ignoreRecommendations": false,
"screencastMode.verticalOffset": 0,
"screencastMode.onlyKeyboardShortcuts": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"files.trimTrailingWhitespace": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"dart.triggerSignatureHelpAutomatically": true,
"window.titleBarStyle": "native",
"git.decorations.enabled": false,
"dart.lineLength": 120,
"vscode_custom_css.imports": ["file:///home/ggbit/.config/vscode/theme.css"],
"vscode_custom_css.policy": true,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.sideBar.location": "left",
"vsicons.dontShowNewVersionMessage": true,
"dart.previewFlutterUiGuides": true,
"debug.javascript.usePreview": false,
"editor.highlightActiveIndentGuide": false,
"editor.defaultFormatter": "vscode.typescript-language-features",
"workbench.iconTheme": "vscode-great-icons",
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "GitHub Dark",
"[dart]": {
"editor.defaultFormatter": "Dart-Code.dart-code"
},
"workbench.activityBar.visible": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment