1
1
Fork 1
sovereign-stack/.vscode/settings.json

37 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2022-06-22 17:43:23 +00:00
{
"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",
2023-02-01 19:44:05 +00:00
"shellcheck.customArgs": [
"-x"
],
2022-06-22 17:43:23 +00:00
"shellcheck.ignorePatterns": {},
2023-03-13 17:41:01 +00:00
// "shellcheck.exclude": [
// "SC1090",
// "SC1091",
// "SC2029"
// ],
2022-06-22 17:43:23 +00:00
"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",
2023-04-06 19:10:35 +00:00
"statusBar.background": "#d68100",
"statusBarItem.hoverBackground": "#c77700",
2022-06-22 17:43:23 +00:00
"statusBar.foreground": "#000000"
}
}