Adds more VScode extensions

This commit is contained in:
2025-05-12 19:43:56 -07:00
parent 8796f36a68
commit f5fd69ab28

View File

@@ -4,20 +4,23 @@
enable = true;
extensions = with pkgs.vscode-extensions; [
asvetliakov.vscode-neovim
github.copilot
enkia.tokyo-night
eamodio.gitlens
mechatroner.rainbow-csv
asvetliakov.vscode-neovim # Use embedded neovim editor
enkia.tokyo-night # Color theme
eamodio.gitlens # Show git info inline
mechatroner.rainbow-csv # Make it easier to read CSV files
aaron-bond.better-comments # Provides some highlighting in comments
(pkgs.vscode-utils.extensionFromVscodeMarketplace
{
# Typescript
esbenp.prettier-vscode # Auto-formatting
# AI Agents
github.copilot
(pkgs.vscode-utils.extensionFromVscodeMarketplace {
name = "vscode-augment";
publisher = "augment";
version = "0.442.0";
sha256 = "sha256-TzoafGCmaOEOUHh3XWPrLe/ysICviaOJcpMVqWY/Nr4=";
}
)
})
];
};
}