Skip to content

Instantly share code, notes, and snippets.

@7pulse
Created April 22, 2024 06:17
Show Gist options
  • Save 7pulse/950475dc2630b621e08a71a02c29afdb to your computer and use it in GitHub Desktop.
Save 7pulse/950475dc2630b621e08a71a02c29afdb to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Editor settings
"editor.fontSize": 14,
// "editor.lineHeight": 1.8,
"editor.fontFamily": "jetBrains Mono",
"workbench.startupEditor": "newUntitledFile",
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"editor.semanticHighlighting.enabled": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
// cleaning the UI
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": false,
"workbench.iconTheme": "symbols",
"window.menuBarVisibility": "toggle",
"workbench.layoutControl.enabled": false,
"workbench.activityBar.location": "top",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"update.mode": "manual",
"symbols.hidesExplorerArrows": false,
"explorer.compactFolders": false,
// prettier settings
"prettier.arrowParens": "avoid",
"prettier.singleQuote": true,
"window.commandCenter": false,
// apc settings
"apc.font.family": "Inter",
"apc.stylesheet": {
".pane-body": "padding: 8px;",
".editor-actions": "display: none;"
},
"window.customTitleBarVisibility": "never",
"workbench.editor.editorActionsLocation": "hidden",
"workbench.colorTheme": "Best Themes - One Dark Pro",
"sort-imports.default-sort-style": "eslint"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment