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