13 lines
294 B
Nix
Executable file
13 lines
294 B
Nix
Executable file
{ 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
|
|
];
|
|
};
|
|
}
|