From 37c45d69849bf40aef754900602251ed5b8eccb1 Mon Sep 17 00:00:00 2001 From: Korbs Date: Sun, 1 Sep 2024 22:57:10 -0400 Subject: [PATCH] Add config --- configs/vscodium.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 configs/vscodium.json diff --git a/configs/vscodium.json b/configs/vscodium.json new file mode 100644 index 0000000..fe16f47 --- /dev/null +++ b/configs/vscodium.json @@ -0,0 +1,26 @@ +{ + "terminal.integrated.defaultProfile.linux": "bash", + "terminal.integrated.profiles.linux": { + "bash": { + "path": "/app/bin/host-spawn", + "args": [ + "bash" + ], + "icon": "terminal-bash", + "overrideName": true + } + }, + "workbench.activityBar.location": "hidden", + "workbench.statusBar.visible": false, + "editor.minimap.enabled": false, + "breadcrumbs.enabled": false, + "editor.stickyScroll.enabled": false, + "editor.renderWhitespace": "none", + "editor.renderControlCharacters": false, + "window.menuBarVisibility": "toggle", + "workbench.startupEditor": "none", + "javascript.updateImportsOnFileMove.enabled": "never", + "git.openRepositoryInParentFolders": "never", + "liveServer.settings.donotShowInfoMsg": true, + "liveServer.settings.donotVerifyTags": true +} \ No newline at end of file