Add sas vscode extension

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-22 09:47:04 +00:00
parent cba6aab6fb
commit 60654c2a2a
7 changed files with 52 additions and 48 deletions

View File

@@ -4,19 +4,23 @@
}:
{ pkgs, ... }:
{
home-manager.users.${user}.programs.vscode = {
extensions = with pkgs.vscode-extensions; [
github.copilot
github.copilot-chat
];
home-manager.users.${user} = {
programs.vscode = {
extensions = with pkgs.vscode-extensions; [
github.copilot
github.copilot-chat
];
userSettings = {
"github.copilot.enable" = {
"*" = true;
"plaintext" = true;
"markdown" = true;
userSettings = {
"github.copilot.enable" = {
"*" = true;
"plaintext" = true;
"markdown" = true;
};
"chat.editing.alwaysSaveWithGeneratedChanges" = true;
};
"chat.editing.alwaysSaveWithGeneratedChanges" = true;
};
imports = [ ./langs/sas ];
};
}

View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
programs.vscode = {
extensions = with pkgs.vscode-extensions; [
sas.sas-lsp
];
userSettings = {
"SAS.connectionProfiles" = {
activeProfile = "";
profiles = { };
};
};
};
}