mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
17 lines
262 B
Nix
17 lines
262 B
Nix
{ pkgs, ...}:
|
|
|
|
with pkgs.vimPlugins;
|
|
|
|
[
|
|
{ plugin = nvim-treesitter.withAllGrammars;
|
|
config = ''
|
|
lua << EOF
|
|
require'nvim-treesitter.configs'.setup {
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
}
|
|
EOF
|
|
'';
|
|
}
|
|
]
|