21 lines
511 B
Nix
21 lines
511 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.vscode = {
|
|
enable = true;
|
|
|
|
extensions = with pkgs.vscode-extensions; [
|
|
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
|
|
|
|
# Typescript
|
|
esbenp.prettier-vscode # Auto-formatting
|
|
|
|
# AI Agents
|
|
github.copilot
|
|
];
|
|
};
|
|
}
|