blob: 08b5e465bd8c3451e9a7ce8a123d07ba8f53e43a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# This module configures various syntax/filetype plugins for Neovim.
{pkgs, ...}: {
programs.neovim.plugins = with pkgs;
with vimPlugins; [
# Filetype plugins
nim-vim
vim-nix
vim-noweb
vim-janet
vim-crystal
];
}
|