Skip to content

Instantly share code, notes, and snippets.

@vicainelli
Created January 31, 2020 11:12
Show Gist options
  • Save vicainelli/34001079ea689b0ca2f73b0fd30caad1 to your computer and use it in GitHub Desktop.
Save vicainelli/34001079ea689b0ca2f73b0fd30caad1 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "Night Owl",
"terminal.integrated.shell.osx": "/bin/zsh",
"workbench.settings.editor": "json",
// * Editor
"editor.cursorSmoothCaretAnimation": true,
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"editor.fontFamily": "Victor Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.multiCursorModifier": "ctrlCmd",
"editor.copyWithSyntaxHighlighting": true,
"editor.suggestSelection": "first",
"diffEditor.renderSideBySide": false,
"editor.lineHeight": 28,
"editor.letterSpacing": 1,
"editor.tabSize": 2,
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.wordWrap": "on",
"editor.cursorBlinking": "solid",
"editor.colorDecorators": false,
// * Workbench
"files.autoSaveDelay": 500,
"files.autoSave": "afterDelay",
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"workbench.tips.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "vscode-icons",
"workbench.editor.tabCloseButton": "off",
"workbench.editor.enablePreviewFromQuickOpen": false,
"window.zoomLevel": 0,
// * GIT
"git.autofetch": true,
"git.confirmSync": false,
"git.ignoreMissingGitWarning": true,
"git.enableSmartCommit": true,
// * TERMINAL
"terminal.integrated.showExitAlert": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontFamily": "Victor Mono, Menlo, Monaco, 'Courier New', monospace",
"terminal.integrated.fontWeight": "100",
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.letterSpacing": 1,
// ---
"html.format.enable": true,
"html.format.preserveNewLines": true,
"files.trimTrailingWhitespace": true,
"editor.rulers": [
80,
100,
120
],
"extensions.ignoreRecommendations": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/node_modules": true,
"**/.DS_Store": true,
"**/vendor": true,
"**/.next": true
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"explorer.confirmDelete": false,
"blade.format.enable": true,
"files.associations": {
"*.html": "html"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment