File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed
tests/test-sources/plugins/colorschemes Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
- {
2
- lib ,
3
- config ,
4
- ...
5
- } :
1
+ { lib , ... } :
6
2
lib . nixvim . plugins . mkNeovimPlugin {
7
- name = "gruvbox-material" ;
3
+ name = "gruvbox-material-nvim " ;
8
4
isColorscheme = true ;
5
+ colorscheme = "gruvbox-material" ;
6
+ moduleName = "gruvbox-material" ;
9
7
packPathName = "gruvbox-material.nvim" ;
10
8
package = "gruvbox-material-nvim" ;
11
9
Original file line number Diff line number Diff line change 13
13
./colorschemes/github-theme.nix
14
14
./colorschemes/gruvbox.nix
15
15
./colorschemes/gruvbox-baby.nix
16
- ./colorschemes/gruvbox-material.nix
16
+ ./colorschemes/gruvbox-material-nvim .nix
17
17
./colorschemes/kanagawa.nix
18
18
./colorschemes/kanagawa-paper.nix
19
19
./colorschemes/melange.nix
Original file line number Diff line number Diff line change 23
23
It is recommended to use `plugins.pckr` or `plugins.lazy` instead.
24
24
'' ;
25
25
} ;
26
+ renamed . colorschemes = {
27
+ # Added 2025-08-06
28
+ # NOTE: The old name is not in a stable version and was only in unstable for a few weeks,
29
+ # so we can remove this alias more quickly than usual.
30
+ gruvbox-material = "gruvbox-material-nvim" ;
31
+ } ;
26
32
renamed . plugins = {
27
33
# Added 2024-09-17
28
34
surround = "vim-surround" ;
Original file line number Diff line number Diff line change 1
1
{ lib , ... } :
2
2
{
3
3
empty = {
4
- colorschemes . gruvbox-material . enable = true ;
4
+ colorschemes . gruvbox-material-nvim . enable = true ;
5
5
} ;
6
6
7
7
defaults = {
8
- colorschemes . gruvbox-material = {
8
+ colorschemes . gruvbox-material-nvim = {
9
9
enable = true ;
10
10
11
11
settings = {
31
31
} ;
32
32
33
33
example = {
34
- colorschemes . gruvbox-material = {
34
+ colorschemes . gruvbox-material-nvim = {
35
35
enable = true ;
36
36
37
37
settings = {
You can’t perform that action at this time.
0 commit comments