mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-18 08:18:38 +02:00
added formatter + reformat existing codebase
This commit is contained in:
parent
0bf4313f22
commit
1cab8e5167
96 changed files with 3727 additions and 3341 deletions
|
@ -1,11 +1,16 @@
|
|||
{ lib, pkgs, ... }@attrs:
|
||||
let
|
||||
helpers = import ../helpers.nix { inherit lib; };
|
||||
in with helpers; with lib;
|
||||
mkPlugin attrs {
|
||||
name = "surround";
|
||||
description = "Enable surround.vim";
|
||||
package = pkgs.vimPlugins.surround;
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
} @ attrs: let
|
||||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in
|
||||
with helpers;
|
||||
with lib;
|
||||
mkPlugin attrs {
|
||||
name = "surround";
|
||||
description = "Enable surround.vim";
|
||||
package = pkgs.vimPlugins.surround;
|
||||
|
||||
options = {};
|
||||
}
|
||||
options = {};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue