summaryrefslogblamecommitdiffstats
path: root/User/settings.json
blob: d95c8636fb3794af3f0af50df295ed7a7c6d3998 (plain) (tree)
























































                                                                                                              
{
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "python.jediEnabled": false,
    "editor.fontFamily": "'Hack', 'Monaco', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
    "editor.fontSize": 18,
    "terminal.integrated.fontFamily": "Hack",
    "terminal.integrated.fontSize": 18,
    "editor.lineNumbers": "relative",
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/.idea": true,
        "**/.mypy_cache": true,
        "**/.pytest_cache": true,
        "**/.ropeproject": true,
        "**/.vscode": true,
        "**/__pycache__": true,
        "**/*.egg-info": true,
        "**/.tox": true,
        "**/.coverage": true,
        "**/skip-covered": true,
        "**/pip-wheel-metadata": true,
        "**/prof": true,
        "**/tags": true,
    },
    "vim.enableNeovim": true,
    "vim.neovimPath": "/usr/bin/nvim",
    "vim.hlsearch": true,
    "vim.leader": "\\",
    "vim.visualstar": true,
    "vim.handleKeys": {
        "<C-d>": true,
        "<C-b>": false,
        "<C-r>": false,
        "<C-k>": false,
    },
    "vim.searchHighlightColor": "#f93005",
    "vim.visualModeKeyBindingsNonRecursive": [
        {
            "before": [">"],
            "commands": ["editor.action.indentLines"]
        },
        {
            "before": ["<"],
            "commands": ["editor.action.outdentLines"]
        },
    ],
    "editor.renderWhitespace": "none",
    "editor.dragAndDrop": false,
    "telemetry.enableCrashReporter": false,
    "telemetry.enableTelemetry": false,
    "go.formatTool": "goimports"
}