Skip to content

Instantly share code, notes, and snippets.

@preeteshjain
Last active October 8, 2020 11:49
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 preeteshjain/aff0c4dc66d6032393aa4d6d4e9e1690 to your computer and use it in GitHub Desktop.
Save preeteshjain/aff0c4dc66d6032393aa4d6d4e9e1690 to your computer and use it in GitHub Desktop.
VSCode Personal Settings
{
"editor.fontFamily": "MonoLisa",
"workbench.colorTheme": "Default Light+",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.lineHeight": 50,
"editor.renderLineHighlight": "none",
"editor.detectIndentation": false,
"files.insertFinalNewline": true,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.mouseWheelScrollSensitivity": 3,
"editor.smoothScrolling": true,
"workbench.activityBar.visible": false,
"files.autoSave": "off",
"editor.cursorBlinking": "smooth",
"editor.matchBrackets": "never",
"explorer.confirmDelete": false,
"emmet.triggerExpansionOnTab": true,
"editor.quickSuggestions": true,
"editor.suggestOnTriggerCharacters": true,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": true,
"workbench.statusBar.visible": true,
"terminal.integrated.fontFamily": "MonoLisa",
"workbench.editor.enablePreviewFromQuickOpen": false,
"terminal.integrated.shellArgs.windows": ["--login"],
"files.eol": "\n",
"[php]": {
"editor.tabSize": 4
},
"[blade]": {
"editor.tabSize": 4
},
"[shellscript]": {
"editor.tabSize": 4
},
"[sass]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDragAndDrop": false,
"blade.format.enable": true,
"workbench.editor.restoreViewState": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment