mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
15 lines
404 B
Nix
15 lines
404 B
Nix
{ lib, pkgs, ... }:
|
|
lib.nixvim.plugins.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;
|
|
}
|