Last active
March 4, 2017 10:17
-
-
Save agauniyal/2159d3e3b2ae2aaa0604b015d6470d0f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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