@@ -103,7 +103,6 @@ in
|
|||||||
"window.menuBarVisibility" = "toggle";
|
"window.menuBarVisibility" = "toggle";
|
||||||
"workbench.editor.historyBasedLanguageDetection" = true;
|
"workbench.editor.historyBasedLanguageDetection" = true;
|
||||||
"workbench.list.smoothScrolling" = true;
|
"workbench.list.smoothScrolling" = true;
|
||||||
"typescript.updateImportsOnFileMove.enabled" = "always";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -121,6 +120,7 @@ in
|
|||||||
./langs/nix
|
./langs/nix
|
||||||
./langs/python
|
./langs/python
|
||||||
./langs/svelte
|
./langs/svelte
|
||||||
|
./langs/typescript
|
||||||
./langs/yaml
|
./langs/yaml
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.vscode.extensions =
|
programs.vscode = {
|
||||||
|
extensions =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
with vscode-extensions;
|
with vscode-extensions;
|
||||||
[
|
[
|
||||||
@@ -10,4 +11,9 @@
|
|||||||
vscjava.vscode-maven
|
vscjava.vscode-maven
|
||||||
vscjava.vscode-gradle
|
vscjava.vscode-gradle
|
||||||
];
|
];
|
||||||
|
|
||||||
|
userSettings = {
|
||||||
|
"java.compile.nullAnalysis.mode" = "automatic";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,6 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
programs.vscode.userSettings = {
|
||||||
|
"typescript.updateImportsOnFileMove.enabled" = "always";
|
||||||
|
};
|
||||||
|
}
|
@@ -9,7 +9,7 @@
|
|||||||
home-manager.users.${user} = {
|
home-manager.users.${user} = {
|
||||||
programs.go = {
|
programs.go = {
|
||||||
enable = true;
|
enable = true;
|
||||||
goPath = "${home}/.local/share/go";
|
goPath = ".local/share/go";
|
||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
gradle = {
|
gradle = {
|
||||||
enable = true;
|
enable = true;
|
||||||
home = "${home}/.local/share/gradle";
|
home = ".local/share/gradle";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -10,10 +10,13 @@
|
|||||||
github.copilot-chat
|
github.copilot-chat
|
||||||
];
|
];
|
||||||
|
|
||||||
userSettings."github.copilot.enable" = {
|
userSettings = {
|
||||||
|
"github.copilot.enable" = {
|
||||||
"*" = true;
|
"*" = true;
|
||||||
"plaintext" = true;
|
"plaintext" = true;
|
||||||
"markdown" = true;
|
"markdown" = true;
|
||||||
};
|
};
|
||||||
|
"chat.editing.alwaysSaveWithGeneratedChanges" = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user