mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Deploy (push) Blocked by required conditions
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
25 lines
507 B
Nix
25 lines
507 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "moonfly";
|
|
colorscheme = "moonfly";
|
|
packPathName = "vim-moonfly-colors";
|
|
package = "vim-moonfly-colors";
|
|
isColorscheme = true;
|
|
|
|
maintainers = [ lib.maintainers.AidanWelch ];
|
|
|
|
globalPrefix = "moonfly";
|
|
settingsExample = {
|
|
Italics = true;
|
|
NormalFloat = false;
|
|
TerminalColors = true;
|
|
Transparent = false;
|
|
Undercurls = true;
|
|
UnderlineMatchParen = false;
|
|
VirtualTextColor = false;
|
|
WinSeparator = 1;
|
|
};
|
|
}
|