Skip to content

Instantly share code, notes, and snippets.

@pi0
Created November 4, 2019 11:13
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 pi0/ea154de06a5d85f1424a39d96b2fc018 to your computer and use it in GitHub Desktop.
Save pi0/ea154de06a5d85f1424a39d96b2fc018 to your computer and use it in GitHub Desktop.
{
// Editor
"diffEditor.renderSideBySide": true,
"editor.fontFamily": "Anonymous, InputMono, Menlo, Monaco, 'Courier New', monospace",
"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",
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.tabSize": 2,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
// Workbench
"workbench.editor.labelFormat": "medium",
"workbench.editor.swipeToNavigate": true,
"workbench.fontAliasing": "antialiased",
"workbench.colorCustomizations": {
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"sideBar.background": "#282c34"
},
// Window
"window.zoomLevel": 0,
"window.nativeTabs": true,
"window.titleBarStyle": "custom",
"window.newWindowDimensions": "fullscreen",
"window.restoreFullscreen": true,
"window.restoreWindows": "none",
"window.openFilesInNewWindow": "on",
// Files
"files.autoSave": "onFocusChange",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
// Explorer
"explorer.autoReveal": false,
"explorer.confirmDragAndDrop": false,
// Prettier
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.trailingComma": "es5",
"prettier.disableLanguages": [],
// ESLint
"eslint.enable": true,
"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": [
"~/Code"
],
// NPM
"npm.packageManager": "yarn",
// GIT
"git.autofetch": true,
"git.enableSmartCommit": true,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "One Dark Pro",
"explorer.confirmDelete": false,
// Other
"materialTheme.fixIconsRunning": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"jest.autoEnable": false,
// Sync
"sync.gist": "ee2f3fe61a83bc0460cad8cb221c7b4b",
"sync.quietSync": false,
"sync.removeExtensions": false,
"window.menuBarVisibility": "toggle",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment