about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/plugins/nvim-treesitter/update-shell.nix
blob: 04d83d42c8733cfad2b47bf8523a64e924e2d853 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import ../../../../../.. { } }:

with pkgs;

let
  inherit (vimPlugins) nvim-treesitter;

  neovim = pkgs.neovim.override {
    configure.packages.all.start = [ nvim-treesitter ];
  };
in

mkShell {
  packages = [ neovim nurl python3 ];

  NVIM_TREESITTER = nvim-treesitter;
}