plugins/vim-be-good: init

Integrate the vim-be-good plugin
This commit is contained in:
347Online | Katie Janzen 2024-11-23 23:23:20 -06:00
parent 8507b01e0c
commit a1c352affc
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, pkgs, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "vim-be-good";
package = "vim-be-good";
description = ''
Vim be good is a plugin designed to make you better at vim by creating a game to practice basic movements in.
Learn more: https://github.com/ThePrimeagen/vim-be-good
'';
maintainers = [ lib.maintainers.KatieJanzen ];
callSetup = false;
hasSettings = false;
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.vim-be-good.enable = true;
};
}