Skip to content

Instantly share code, notes, and snippets.

@ivancuric
Created March 10, 2017 09:46
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 ivancuric/35ee2e567d951cf69f561187fe4ffeb9 to your computer and use it in GitHub Desktop.
Save ivancuric/35ee2e567d951cf69f561187fe4ffeb9 to your computer and use it in GitHub Desktop.
VScode settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Input",
"editor.fontSize": 14,
"terminal.integrated.fontLigatures": true,
"terminal.integrated.fontSize": 14,
"editor.wordWrap": "on",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.fontLigatures": true,
"html.suggest.angular1": false,
"html.suggest.ionic": false,
"scss.validate": false,
"css.validate": false,
"files.trimTrailingWhitespace": true,
"explorer.openEditors.visible": 9,
"editor.renderIndentGuides": true,
"editor.mouseWheelScrollSensitivity": 0.5,
"editor.cursorBlinking": "smooth",
// "html.format.preserveNewLines": false,
"terminal.external.osxExec": "iTerm.app",
"workbench.quickOpen.closeOnFocusLost": false,
"terminal.integrated.fontFamily": "Input, Monaco, Consolas, \"Droid Sans Mono\", \"Courier New\", monospace, \"Droid Sans Fallback\"",
"files.associations": {
".babelrc": "json",
".gitignore": "gitignore",
".stylelintrc": "json",
"*zsh*": "shellscript",
"*bash*": "shellscript",
".aliases": "shellscript",
"z*": "shellscript",
".z*": "shellscript",
"*.js": "javascript",
".eslintignore": "gitignore",
"browserslist": "shellscript",
".inputrc": "shellscript"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/node_modules/": true,
"**/.cache": true,
"**/bower_components/": true,
"**/*.pyc": true,
"**/.webpack-cache/": true,
"**/__pycache__/": true
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"git.confirmSync": false,
"gitProjectManager.baseProjectsFolders": [
"~/Dev"
],
"gitProjectManager.storeRepositoriesBetweenSessions": true,
"gitProjectManager.ignoredFolders": [
"node_modules"
],
"gitProjectManager.maxDepthRecursion": 4,
"window.zoomLevel": 0,
"workbench.editor.tabCloseButton": "off",
"files.insertFinalNewline": true,
"window.titleBarStyle": "native",
"editor.emptySelectionClipboard": false,
// "editor.formatOnType": true,
"editor.wrappingIndent": "same",
"files.autoSave": "off",
"python.linting.enabled": false,
"workbench.iconTheme": "vs-seti",
"workbench.welcome.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment