mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
vim-endwise: init
This commit is contained in:
parent
031e1c35f2
commit
aa9ea48962
2 changed files with 13 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
./utils/commentary.nix
|
./utils/commentary.nix
|
||||||
./utils/startify.nix
|
./utils/startify.nix
|
||||||
./utils/goyo.nix
|
./utils/goyo.nix
|
||||||
|
./utils/endwise.nix
|
||||||
|
|
||||||
./languages/treesitter.nix
|
./languages/treesitter.nix
|
||||||
|
|
||||||
|
|
12
plugins/utils/endwise.nix
Normal file
12
plugins/utils/endwise.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ lib, pkgs, ... }@attrs:
|
||||||
|
let
|
||||||
|
helpers = import ../helpers.nix { lib = lib; };
|
||||||
|
in with helpers; with lib;
|
||||||
|
mkPlugin attrs {
|
||||||
|
name = "endwise";
|
||||||
|
description = "Enable vim-endwise";
|
||||||
|
extraPlugins = [ pkgs.vimPlugins.vim-endwise ];
|
||||||
|
|
||||||
|
# Yes it's really not configurable
|
||||||
|
options = {};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue