Last active
January 17, 2018 09:31
-
-
Save checkaayush/5fb027599757ee02d563f00ddfba66ad to your computer and use it in GitHub Desktop.
My VSCode User Settings
This file contains hidden or 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.tabSize": 2, | |
"workbench.colorTheme": "Monokai", | |
"editor.fontFamily": "'DejaVu Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'", | |
"window.zoomLevel": 0, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true, | |
"**/build/": true, | |
"**/dist/": true, | |
"**/*egg-info": true, | |
"**/__pycache__": true, | |
"**/.venv": true | |
}, | |
"window.menuBarVisibility": "default", | |
"workbench.activityBar.visible": false, | |
"workbench.iconTheme": "vscode-great-icons", | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
}, | |
"editor.acceptSuggestionOnEnter": "on", | |
"editor.quickSuggestionsDelay": 10, | |
"editor.wordBasedSuggestions": true, | |
"editor.parameterHints": true, | |
"extensions.ignoreRecommendations": true, | |
"workbench.panel.location": "bottom", | |
"files.autoSave": "off", | |
"editor.renderWhitespace": "none", | |
"editor.rulers": [ | |
80 | |
], | |
"editor.smoothScrolling": true, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/.pyc": true | |
}, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.scrollback": 5000, | |
"terminal.integrated.cwd": "/home/aayush/Desktop/github", | |
"editor.formatOnSave": false, | |
"vsicons.dontShowConfigManuallyChangedMessage": true, | |
"sublimeTextKeymap.promptV3Features": true, | |
"python.venvPath": "~/.virtualenvs/", | |
"python.pythonPath": "/usr/bin/python3" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment