repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
anvil-editor: init at 0.4
[NixPkgs.git]
/
pkgs
/
applications
/
editors
/
vim
/
plugins
/
nvim-treesitter
/
update-shell.nix
blob
04d83d42c8733cfad2b47bf8523a64e924e2d853
1
{ pkgs ? import ../../../../../.. { } }:
2
3
with pkgs;
4
5
let
6
inherit (vimPlugins) nvim-treesitter;
7
8
neovim = pkgs.neovim.override {
9
configure.packages.all.start = [ nvim-treesitter ];
10
};
11
in
12
13
mkShell {
14
packages = [ neovim nurl python3 ];
15
16
NVIM_TREESITTER = nvim-treesitter;
17
}