Created
April 22, 2024 06:17
-
-
Save 7pulse/950475dc2630b621e08a71a02c29afdb to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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