mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
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;
|
|
};
|
|
}
|