mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
12 lines
306 B
Nix
12 lines
306 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "commentary";
|
|
package = "vim-commentary";
|
|
description = "Comment stuff out.";
|
|
|
|
# TODO Add support for additional filetypes. This requires autocommands!
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
# This plugin has no config options
|
|
}
|