Add sas vscode extension
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@@ -0,0 +1,15 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.vscode = {
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
sas.sas-lsp
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
"SAS.connectionProfiles" = {
|
||||
activeProfile = "";
|
||||
profiles = { };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user