From c30eb92f929ec4b49121feaae0459af7970899ca Mon Sep 17 00:00:00 2001 From: Pratik Tripathy Date: Mon, 20 Jan 2025 21:57:41 +0530 Subject: [PATCH] vscode: Statusbar color changes & markdownlint from config file - Use config file markdown formatting and linting - Update status bar colors --- common/.config/Code/User/settings.json | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/common/.config/Code/User/settings.json b/common/.config/Code/User/settings.json index a42ea77..97d420b 100644 --- a/common/.config/Code/User/settings.json +++ b/common/.config/Code/User/settings.json @@ -44,9 +44,9 @@ "workbench.colorCustomizations": { "tab.activeBackground": "#07f7af3f", "tab.activeBorder": "#ffffff", - "statusBar.background": "#005f87", - "statusBar.noFolderBackground": "#005f87", - "statusBar.debuggingBackground": "#005f87", + "statusBar.background": "#171819", + "statusBar.noFolderBackground": "#171819", + "statusBar.debuggingBackground": "#171819", "statusBar.foreground": "#ffffff", "statusBar.debuggingForeground": "#ffffff" }, @@ -300,13 +300,10 @@ "markdown.extension.bold.indicator": "**", "markdown.extension.italic.indicator": "*", "markdownlint.config": { - "default": true, - "MD007": false, - "MD030": false, - "MD033": false, - "MD046": false, - "no-hard-tabs": false, - "line-length": false + "extends": "~/.config/templates/markdownlint.json" + }, + "[markdown]": { + "editor.defaultFormatter": "DavidAnson.vscode-markdownlint" }, // Python @@ -346,6 +343,6 @@ "sql-formatter.dialect": "pl/sql", // Windsurf - "windsurf.enableSupercomplete": true, - "windsurf.enableAutocomplete": true + "windsurf.enableAutocomplete": true, + "windsurf.enableSupercomplete": true }