Skip to content

Instantly share code, notes, and snippets.

@mohit4bug
Last active April 21, 2024 21:00
Show Gist options
  • Save mohit4bug/58805eaa64f8e1fb6a24307d16aa6efc to your computer and use it in GitHub Desktop.
Save mohit4bug/58805eaa64f8e1fb6a24307d16aa6efc to your computer and use it in GitHub Desktop.
VS Code settings
{
/* Workbench */
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": false,
"workbench.iconTheme": "bearded-icons",
"workbench.colorTheme": "Expo Dark",
/* Editor */
"editor.accessibilitySupport": "off",
"editor.fontFamily": "'JetBrainsMono Nerd Font'",
"editor.lineHeight": 2,
"editor.fontSize": 16,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.minimap.enabled": false,
"editor.lineNumbers": "relative",
"editor.renderLineHighlight": "none",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.cursorBlinking": "expand",
"editor.smoothScrolling": true,
"editor.mouseWheelScrollSensitivity": 4,
"editor.glyphMargin": false,
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
/* Terminal */
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily":"'JetBrainsMono Nerd Font'",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.smoothScrolling": true,
/* Explorer */
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"javascript.updateImportsOnFileMove.enabled": "always",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment