nixos/common/neovim/treesitter.nix

14 lines
294 B
Nix
Raw Permalink Normal View History

2024-02-16 13:59:46 +01:00
{ pkgs, ... }:
{
programs.neovim = {
plugins = with pkgs.vimPlugins; [
nvim-treesitter
nvim-treesitter-parsers.haskell
nvim-treesitter-parsers.latex
nvim-treesitter-parsers.bibtex
nvim-treesitter-parsers.rust
nvim-treesitter-parsers.agda
];
};
}