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