mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
18 lines
294 B
Nix
18 lines
294 B
Nix
{ pkgs ? import ../../../../../.. { } }:
|
|
|
|
with pkgs;
|
|
|
|
let
|
|
inherit (vimPlugins) nvim-treesitter;
|
|
|
|
neovim = pkgs.neovim.override {
|
|
configure.packages.all.start = [ nvim-treesitter ];
|
|
};
|
|
in
|
|
|
|
mkShell {
|
|
packages = [ neovim nix-prefetch python3 ];
|
|
|
|
NVIM_TREESITTER = nvim-treesitter;
|
|
}
|