mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
15 lines
410 B
Nix
15 lines
410 B
Nix
{ 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;
|
|
}
|