1
Fork 0
nixos-system-config/users/i/home-manager/packages/neovim.nix

17 lines
275 B
Nix
Raw Normal View History

2024-06-06 16:29:09 +02:00
{ pkgs, ... }:
{
/* Because programs.neovim.extraPackages doesn't work */
home.packages = with pkgs; [
lua-language-server
nodePackages.intelephense
nodePackages.typescript-language-server
clang-tools
ripgrep
nil
gcc
2024-06-09 23:02:20 +02:00
basedpyright
2024-06-06 16:29:09 +02:00
];
}