[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=";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -7,6 +7,7 @@
|
|||||||
"/features/development/haskell.nix"
|
"/features/development/haskell.nix"
|
||||||
"/features/development/markdown.nix"
|
"/features/development/markdown.nix"
|
||||||
"/features/development/typescript.nix"
|
"/features/development/typescript.nix"
|
||||||
|
"/features/development/vscode.nix"
|
||||||
"/features/eww"
|
"/features/eww"
|
||||||
"/features/linux-desktop.nix"
|
"/features/linux-desktop.nix"
|
||||||
"/features/notes.nix"
|
"/features/notes.nix"
|
||||||
|
|||||||
Reference in New Issue
Block a user