Skip to content

Instantly share code, notes, and snippets.

@nalakawula
Created June 25, 2024 11:45
Show Gist options
  • Save nalakawula/3b896852919fbe4e3a6a1feb4444daf2 to your computer and use it in GitHub Desktop.
Save nalakawula/3b896852919fbe4e3a6a1feb4444daf2 to your computer and use it in GitHub Desktop.
VSCode clean UI setting
{
"breadcrumbs.enabled": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.bracketPairColorization.enabled": false,
"editor.cursorBlinking": "solid",
"editor.cursorSmoothCaretAnimation": "on",
"editor.folding": false,
"editor.fontFamily": "'JetBrainsMono Nerd Font Mono', 'SauceCodePro Nerd Font Mono', monospace",
"editor.fontLigatures": true,
"editor.glyphMargin": false,
"editor.guides.bracketPairsHorizontal": false,
"editor.guides.highlightActiveBracketPair": false,
"editor.hideCursorInOverviewRuler": true,
"editor.matchBrackets": "never",
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": "off",
"editor.renderLineHighlight": "none",
"editor.renderWhitespace": "none",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.showFoldingControls": "never",
"editor.tabSize": 2,
"editor.wordWrap": "on",
// "editor.fontSize": 24,
"explorer.compactFolders": false,
"explorer.decorations.colors": false,
"files.autoSave": "afterDelay",
"git.autofetch": true,
"git.decorations.enabled": false,
"github.copilot.editor.enableAutoCompletions": true,
"redhat.telemetry.enabled": false,
"remote.SSH.configFile": "~/.ssh/config",
"scm.diffDecorations": "none",
"scm.diffDecorationsGutterAction": "none",
"scm.diffDecorationsGutterPattern": {
"added": false,
"modified": false
},
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font Mono",
"window.menuBarVisibility": "toggle",
// "window.title": " ",
"window.zoomLevel": 1,
"window.commandCenter": false,
"workbench.activityBar.location": "bottom",
"workbench.colorTheme": "Gruvbox Dark Medium",
"workbench.editor.showTabs": "single",
"workbench.editor.tabActionCloseVisibility": false,
"workbench.startupEditor": "none",
"workbench.statusBar.visible": false,
"workbench.layoutControl.enabled": false,
"yaml.format.enable": true,
}
@nalakawula
Copy link
Author

Result

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment