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

    zip
    unzip

    xsel
    ripgrep
    tree-sitter
    
    luajitPackages.magick

    vscode-langservers-extracted
  ];
}