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