Skip to content

Instantly share code, notes, and snippets.

@pi0
Last active March 5, 2018 14:08
Show Gist options
  • Save pi0/143a9971a4fbbd2b8f05d73812509a4a to your computer and use it in GitHub Desktop.
Save pi0/143a9971a4fbbd2b8f05d73812509a4a to your computer and use it in GitHub Desktop.
{
// Editor
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"diffEditor.renderSideBySide": true,
"editor.find.autoFindInSelection": true,
"editor.fontLigatures": true,
"editor.formatOnSave": false,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.smoothScrolling": true,
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"workbench.editor.labelFormat": "medium",
"workbench.editor.swipeToNavigate": true,
"workbench.fontAliasing": "antialiased",
// Window
"window.nativeTabs": true,
"window.titleBarStyle": "native",
"window.newWindowDimensions": "fullscreen",
"window.restoreFullscreen": true,
"window.zoomLevel": 0,
"window.restoreWindows": "none",
"window.openFilesInNewWindow": "on",
// Files
"files.autoSave": "onFocusChange",
"files.insertFinalNewline": true,
"files.useExperimentalFileWatcher": false,
"files.associations": {
"*.bats": "shellscript"
},
// Explorer
"explorer.autoReveal": false,
"explorer.confirmDragAndDrop": false,
// Prettier
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
"prettier.semi": false,
// ESLint
"eslint.autoFixOnSave": true,
"eslint.packageManager": "npm",
"eslint.run": "onType",
"eslint.options": {
"extensions": [
".js",
".vue",
".html"
]
},
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
}
],
// Project Manager
"projectManager.groupList": true,
"projectManager.sortList": "Recent",
"projectManager.git.baseFolders": [
"/Users/pooya/Code",
"~/Code"
],
// NPM
"npm.packageManager": "yarn",
// GIT
"git.autofetch": true,
"git.enableSmartCommit": true,
"workbench.iconTheme": "material-icon-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment