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