File tree Expand file tree Collapse file tree 3 files changed +48
-0
lines changed
tests/test-sources/plugins/colorschemes Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ lib ,
3
+ ...
4
+ } :
5
+ lib . nixvim . plugins . mkVimPlugin {
6
+ name = "moonfly" ;
7
+ colorscheme = "moonfly" ;
8
+ packPathName = "vim-moonfly-colors" ;
9
+ package = "vim-moonfly-colors" ;
10
+ isColorscheme = true ;
11
+
12
+ maintainers = [ lib . maintainers . AidanWelch ] ;
13
+
14
+ globalPrefix = "moonfly" ;
15
+ settingsExample = {
16
+ Italics = true ;
17
+ NormalFloat = false ;
18
+ TerminalColors = true ;
19
+ Transparent = false ;
20
+ Undercurls = true ;
21
+ UnderlineMatchParen = false ;
22
+ VirtualTextColor = false ;
23
+ WinSeparator = 1 ;
24
+ } ;
25
+ }
Original file line number Diff line number Diff line change 17
17
./colorschemes/melange.nix
18
18
./colorschemes/modus.nix
19
19
./colorschemes/monokai-pro.nix
20
+ ./colorschemes/moonfly.nix
20
21
./colorschemes/nightfox.nix
21
22
./colorschemes/nord.nix
22
23
./colorschemes/one.nix
Original file line number Diff line number Diff line change
1
+ {
2
+ empty = {
3
+ colorschemes . moonfly . enable = true ;
4
+ } ;
5
+
6
+ defaults = {
7
+ colorschemes . moonfly = {
8
+ enable = true ;
9
+
10
+ settings = {
11
+ Italics = false ;
12
+ NormalFloat = true ;
13
+ TerminalColors = true ;
14
+ Transparent = true ;
15
+ Undercurls = true ;
16
+ UnderlineMatchParen = true ;
17
+ VirtualTextColor = true ;
18
+ WinSeparator = 1 ;
19
+ } ;
20
+ } ;
21
+ } ;
22
+ }
You can’t perform that action at this time.
0 commit comments