get most extensions from open-vsx

This commit is contained in:
Vinzenz Schroeter 2025-06-28 09:46:50 +02:00
parent be565adff6
commit 316e88afd3
2 changed files with 25 additions and 17 deletions

View file

@ -47,6 +47,8 @@
"jetbrains-toolbox" "jetbrains-toolbox"
"anydesk" "anydesk"
"vscode-extension-ms-dotnettools-csharp"
]; ];
}; };
} }

View file

@ -7,23 +7,27 @@
package = pkgs.vscodium; package = pkgs.vscodium;
profiles.default = { profiles.default = {
enableUpdateCheck = false; enableUpdateCheck = false;
extensions = with pkgs.vscode-extensions; [ extensions =
jnoortheen.nix-ide with pkgs.nix-vscode-extensions.open-vsx;
ms-python.python [
editorconfig.editorconfig jnoortheen.nix-ide
yzhang.markdown-all-in-one ms-python.python
redhat.vscode-yaml editorconfig.editorconfig
pkief.material-icon-theme yzhang.markdown-all-in-one
rust-lang.rust-analyzer redhat.vscode-yaml
tamasfe.even-better-toml pkief.material-icon-theme
llvm-vs-code-extensions.vscode-clangd rust-lang.rust-analyzer
mkhl.direnv tamasfe.even-better-toml
vadimcn.vscode-lldb llvm-vs-code-extensions.vscode-clangd
# ms-dotnettools.csharp mkhl.direnv
# ms-vscode-remote.remote-ssh muhammad-sammy.csharp
RoweWilsonFrederiskHolme.wikitext davidanson.vscode-markdownlint
davidanson.vscode-markdownlint ]
]; ++ (with pkgs.vscode-extensions; [
vadimcn.vscode-lldb
RoweWilsonFrederiskHolme.wikitext
ms-dotnettools.csharp
]);
userSettings = { userSettings = {
"files.autoSave" = "afterDelay"; "files.autoSave" = "afterDelay";
"files.autoSaveWhenNoErrors" = true; "files.autoSaveWhenNoErrors" = true;
@ -66,6 +70,8 @@
}; };
}; };
"dotnetAcquisitionExtension.sharedExistingDotnetPath" = "${lib.getBin pkgs.dotnet-sdk}/bin/dotnet";
"\[makefile\]" = { "\[makefile\]" = {
"editor.insertSpaces" = false; "editor.insertSpaces" = false;
"editor.detectIndentation" = false; "editor.detectIndentation" = false;