From e1754181484007b79ac10aa2f0dd1cd5035b5763 Mon Sep 17 00:00:00 2001 From: Derek Smith Date: Thu, 6 Apr 2023 15:08:59 -0400 Subject: [PATCH] add a settings.json for vscode --- .vscode/settings.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..518d709 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,37 @@ +{ + "editor.renderWhitespace": "boundary", + "editor.tabSize": 4, + "editor.detectIndentation": false, + "editor.insertSpaces": true, + "editor.cursorBlinking": "phase", + "editor.cursorWidth": 3, + "editor.formatOnSave": true, + "shellcheck.enable": true, + "shellcheck.enableQuickFix": true, + "shellcheck.run": "onType", + "shellcheck.executablePath": "shellcheck", + "shellcheck.customArgs": [ + "-x" + ], + "shellcheck.ignorePatterns": {}, + // "shellcheck.exclude": [ + // "SC1090", + // "SC1091", + // "SC2029" + // ], + "terminal.integrated.fontFamily": "monospace", + "workbench.colorCustomizations": { + "activityBar.background": "#1900a565", + "activityBar.foreground": "#e7e7e7", + "activityBar.inactiveForeground": "#e7e7e799", + "activityBarBadge.background": "#7143fc", + "activityBarBadge.foreground": "#e7e7e7", + "titleBar.activeBackground": "#029727", + "titleBar.inactiveBackground": "#02972799", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveForeground": "#e7e7e799", + "statusBar.background": "#f3ad43", + "statusBarItem.hoverBackground": "#ffbc59", + "statusBar.foreground": "#000000" + } +} \ No newline at end of file