anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / editors / vim / plugins / nvim-treesitter / update-shell.nix
blob04d83d42c8733cfad2b47bf8523a64e924e2d853
1 { pkgs ? import ../../../../../.. { } }:
3 with pkgs;
5 let
6   inherit (vimPlugins) nvim-treesitter;
8   neovim = pkgs.neovim.override {
9     configure.packages.all.start = [ nvim-treesitter ];
10   };
13 mkShell {
14   packages = [ neovim nurl python3 ];
16   NVIM_TREESITTER = nvim-treesitter;