From 3991ac66a5269986b066338c404daea026b4ecbb Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Wed, 12 Apr 2023 10:02:14 -0600 Subject: add vscode settings --- vscode/settings.json | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 vscode/settings.json (limited to 'vscode') diff --git a/vscode/settings.json b/vscode/settings.json new file mode 100644 index 0000000..78fc3e4 --- /dev/null +++ b/vscode/settings.json @@ -0,0 +1,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": "", + "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": ["", "h"], + "commands": [ + "workbench.action.navigateLeft" + ] + }, + { + "before": ["", "j"], + "commands": [ + "workbench.action.navigateDown" + ] + }, + { + "before": ["", "k"], + "commands": [ + "workbench.action.navigateUp" + ] + }, + { + "before": ["", "l"], + "commands": [ + "workbench.action.navigateRight" + ] + } + ] +} \ No newline at end of file -- cgit v1.2.3