aboutsummaryrefslogtreecommitdiff
path: root/nixos/nvim.nix
blob: c19c6962f657e993dc64afdce00048182bb036fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, unstable, ... }:
{
  environment.systemPackages = with pkgs; [
    unstable.neovim

    zip
    unzip

    xsel
    ripgrep
    tree-sitter

    vscode-langservers-extracted
  ];
}