mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
18 lines
286 B
Nix
18 lines
286 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 nurl python3 ];
|
|
|
|
NVIM_TREESITTER = nvim-treesitter;
|
|
}
|