mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
surround: init plugin
This commit is contained in:
parent
f8b70a30ea
commit
8da3fa430c
2 changed files with 12 additions and 0 deletions
|
@ -43,6 +43,7 @@
|
|||
./utils/nvim-tree.nix
|
||||
./utils/specs.nix
|
||||
./utils/startify.nix
|
||||
./utils/surround.nix
|
||||
./utils/undotree.nix
|
||||
];
|
||||
}
|
||||
|
|
11
plugins/utils/surround.nix
Normal file
11
plugins/utils/surround.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ lib, pkgs, ... }@attrs:
|
||||
let
|
||||
helpers = import ../helpers.nix { lib = lib; };
|
||||
in with helpers; with lib;
|
||||
mkPlugin attrs {
|
||||
name = "surround";
|
||||
description = "Enable surround.vim";
|
||||
extraPlugins = [ pkgs.vimPlugins.surround ];
|
||||
|
||||
options = {};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue