Skip to content

Instantly share code, notes, and snippets.

@nardsqq
Last active October 25, 2023 02:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nardsqq/e4b0a0b131952c6ccabe3c8926cacb35 to your computer and use it in GitHub Desktop.
Save nardsqq/e4b0a0b131952c6ccabe3c8926cacb35 to your computer and use it in GitHub Desktop.
VS Code Personal User Settings
{
// Workbench
"workbench.settings.editor": "json",
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "right",
// Editor
"editor.fontFamily": "Liberation Mono, Cascadia Code, Fira Code",
"editor.fontSize": 14,
"editor.fontWeight": "400",
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.cursorSmoothCaretAnimation": "on",
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"files.trimTrailingWhitespace": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
// Javascript
"[javascript]": {
"editor.formatOnSave": false
},
// Typescript
"[typescript]": {
"editor.formatOnSave": true
},
// Others
"explorer.openEditors.visible": 1,
"breadcrumbs.enabled": false,
"editor.suggestSelection": "first",
"editor.matchBrackets": "always",
"workbench.colorTheme": "Gruvbox Material Dark",
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.activityBar.visible": false,
"explorer.confirmDragAndDrop": false,
"editor.guides.indentation": true,
"window.zoomLevel": -1,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment