mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 15:32:48 +01:00
10 lines
264 B
Nix
10 lines
264 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "endwise";
|
|
package = "vim-endwise";
|
|
description = "A Vim plugin that automatically adds `end` to Ruby blocks.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
# This plugin has no config options
|
|
}
|