mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
14 lines
228 B
Nix
14 lines
228 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
helpers,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "endwise";
|
|
description = "vim-endwise";
|
|
package = pkgs.vimPlugins.vim-endwise;
|
|
|
|
# Yes it's really not configurable
|
|
options = {};
|
|
}
|