Skip to content

Instantly share code, notes, and snippets.

@agauniyal
Last active March 4, 2017 10:17
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 agauniyal/2159d3e3b2ae2aaa0604b015d6470d0f to your computer and use it in GitHub Desktop.
Save agauniyal/2159d3e3b2ae2aaa0604b015d6470d0f to your computer and use it in GitHub Desktop.
{
"editor.fontFamily": "'Droid Sans Mono', monospace",
"editor.fontSize": 13,
"editor.lineHeight": 20,
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"editor.roundedSelection": false,
"editor.selectionHighlight": false,
"editor.scrollBeyondLastLine": false,
"editor.wrappingColumn": 120,
"editor.renderWhitespace": "boundary",
"editor.renderIndentGuides": true,
"emmet.triggerExpansionOnTab": false,
"files.trimTrailingWhitespace": true,
"git.confirmSync": true,
"less.validate": false,
"php.validate.enable": false,
"typescript.validate.enable": false,
"terminal.external.linuxExec": "gnome-terminal",
"terminal.integrated.cursorBlinking": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"update.channel": "none",
"extensions.autoUpdate": true,
"C_Cpp.autocomplete": "Disabled",
"C_Cpp.clang_format_path": "/usr/bin/clang-format",
"C_Cpp.clang_format_sortIncludes": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/build": true,
"**/subprojects": true
},
"files.watcherExclude": {
"**/.git/**": true,
"**/node_modules/**": true,
"**/build/**": true,
"**/subprojects": true
},
"ycmd.path": "/home/agauniyal/.vim/plugged/YouCompleteMe/third_party/ycmd",
"ycmd.global_extra_config": "/home/agauniyal/.vim/.ycm_extra_conf.py",
"ycmd.python": "/usr/bin/python2",
"ycmd.use_imprecise_get_type": true,
"editor.quickSuggestionsDelay": 100,
"workbench.activityBar.visible": false,
"terminal.integrated.fontFamily": "source code pro medium",
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1.4,
"C_Cpp.clang_format_fallbackStyle": "Chromium",
"window.menuBarVisibility": "toggle",
"editor.rulers": [
80
],
"workbench.editor.tabCloseButton": "off",
"editor.mouseWheelScrollSensitivity": 2,
"editor.formatOnPaste": true,
"workbench.welcome.enabled": false,
"eslint.validate": [
"javascript"
],
"problems.autoReveal": false,
"projectManager.showProjectNameInStatusBar": false,
"projectManager.sortList": "Recent",
"projectManager.vscode.ignoredFolders": [
"node_modules",
"out",
"typings",
"test",
"build",
"subprojects"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment