add GitHub Copilot extensions and update settings, remove supermaven
This commit is contained in:
parent
24bc311afb
commit
a23fdbb301
1 changed files with 7 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue