[vscode] Sets up VScode with some extensions on Vega.
This commit is contained in:
23
home-manager/features/development/vscode.nix
Normal file
23
home-manager/features/development/vscode.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
asvetliakov.vscode-neovim
|
||||
github.copilot
|
||||
enkia.tokyo-night
|
||||
eamodio.gitlens
|
||||
mechatroner.rainbow-csv
|
||||
|
||||
(pkgs.vscode-utils.extensionFromVscodeMarketplace
|
||||
{
|
||||
name = "vscode-augment";
|
||||
publisher = "augment";
|
||||
version = "0.442.0";
|
||||
sha256 = "sha256-TzoafGCmaOEOUHh3XWPrLe/ysICviaOJcpMVqWY/Nr4=";
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user