mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
16 lines
318 B
Nix
16 lines
318 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "commentary";
|
|
packPathName = "vim-commentary";
|
|
package = "vim-commentary";
|
|
|
|
# TODO Add support for additional filetypes. This requires autocommands!
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
# This plugin has no config options
|
|
}
|