Changed Files :o

This commit is contained in:
Jack Mechem 2026-02-23 17:52:44 -08:00
parent 5f4b193744
commit 6f5a131860
7 changed files with 317 additions and 349 deletions

View file

@ -0,0 +1,28 @@
{pkgs, ... }:
{
programs.neovim = {
enable = true;
extraPackages = with pkgs; [
# lua
lua-language-server
stylua
# javascript/typescript/react
nodejs_20
typescript
nodePackages.typescript-language-server
nodePackages.vscode-langservers-extracted
nodePackages.bash-language-server
nodePackages.prettier
nodePackages.eslint_d
nodePackages.eslint
# nix
nil
nixd
alejandra
nixfmt
# clang
clang-tools
];
};
}