add GitHub Copilot extensions and update settings, remove supermaven

This commit is contained in:
Seaswimmer 2024-12-18 15:05:11 -05:00
parent 24bc311afb
commit a23fdbb301
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -185,7 +185,6 @@ rec {
adpyke.vscode-sql-formatter
qwtel.sqlite-viewer
yy0931.vscode-sqlite3-editor
supermaven.supermaven # requires a supermaven subscription - https://supermaven.com/
leonardssh.vscord
alefragnani.project-manager
mkhl.direnv
@ -200,6 +199,10 @@ rec {
formulahendry.auto-rename-tag
prunoideae.probejs
d-koppenhagen.file-tree-to-text-generator
# Copilot
github.copilot
github.copilot-chat
];
userSettings = {
"DO-NOT-EDIT-1" =
@ -424,9 +427,7 @@ rec {
"workbench.editorAssociations" = {
"*.db" = "sqlite3-editor.editor";
};
"vs-code-prettier-eslint.prettierLast" = false;
"typescript.updateImportsOnFileMove.enabled" = "always";
"supermaven.allowGitignore" = true;
"[javascript]" = {
"editor.defaultFormatter" = "esbenp.prettier-vscode";
};
@ -443,6 +444,9 @@ rec {
"[jsonc]" = {
"editor.defaultFormatter" = "esbenp.prettier-vscode";
};
"github.copilot.enable" = {
"markdown" = true;
};
};
};
}