checkaayush
11/18/2017 - 8:39 AM

My VSCode User Settings

My VSCode User Settings

{
    "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"
}