aboutsummaryrefslogtreecommitdiff
path: root/vscode/settings.json
blob: 78fc3e495e51c9812b9a9c1d2aa666cced03fb35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
    "editor.inlineSuggest.enabled": true,
    "window.menuBarVisibility": "toggle",
    "telemetry.telemetryLevel": "off",
    "telemetry.enableTelemetry": false,
    "java.import.gradle.enabled": true,

    "workbench.colorCustomizations": {
        "statusBarItem.remoteBackground": "#79740e",
        "statusBar.debuggingBackground": "#d65d0e",
    },
    "editor.fontFamily": "'JetBrains Mono'",
    "java.configuration.runtimes": [
        {
            "name": "JavaSE-1.8",
            "path": "/usr/local/java/jdk-8",
            "default": true
        }
    ],
    "terminal.integrated.commandsToSkipShell": [
        "language-julia.interrupt"
    ],
    "security.workspace.trust.untrustedFiles": "open",
    "workbench.settings.enableNaturalLanguageSearch": false,
    "extensions.autoCheckUpdates": false,
    "extensions.autoUpdate": "onlyEnabledExtensions",
    "typescript.disableAutomaticTypeAcquisition": true,
    "workbench.colorTheme": "Gruvbox Dark Medium",
    "editor.cursorBlinking": "solid",
    "editor.tabSize": 2,
    "keyboard.dispatch": "keyCode",
    "vim.vimrc.enable": true,
    "vim.vimrc.path": "~/.vimrc",
    "vim.leader": "<space>",
    "debug.inlineValues": "on",
    "debug.console.collapseIdenticalLines": false,
    "glassit.alpha": 225,
    "editor.minimap.enabled": false,
    "vim.easymotionDimBackground": false,
    "vim.hlsearch": true,
    "workbench.startupEditor": "none",
    "workbench.sideBar.location": "right",
    "vim.normalModeKeyBindingsNonRecursive": [
        {
            "before": ["<leader>", "h"],
            "commands": [
                "workbench.action.navigateLeft"
            ]
        },
        {
            "before": ["<leader>", "j"],
            "commands": [
                "workbench.action.navigateDown"
            ]
        },
        {
            "before": ["<leader>", "k"],
            "commands": [
                "workbench.action.navigateUp"
            ]
        },
        {
            "before": ["<leader>", "l"],
            "commands": [
                "workbench.action.navigateRight"
            ]
        }
    ]
}