mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
tests/plugins/lightline: fix test
Lightline has an internal list of colorschemes that are supported which can be found at https://github.com/itchyny/lightline.vim/blob/master/colorscheme.md
This commit is contained in:
parent
89b876dc0d
commit
8234ee85ea
2 changed files with 5 additions and 2 deletions
|
@ -54,6 +54,9 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config {
|
||||||
colorscheme = defaultNullOpts.mkStr "default" ''
|
colorscheme = defaultNullOpts.mkStr "default" ''
|
||||||
The colorscheme to use for lightline.
|
The colorscheme to use for lightline.
|
||||||
Default theme is equal to `powerline`.
|
Default theme is equal to `powerline`.
|
||||||
|
|
||||||
|
List of supported colorschemes can be found at
|
||||||
|
https://github.com/itchyny/lightline.vim/blob/master/colorscheme.md.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
component_function = defaultNullOpts.mkAttrsOf types.str { } ''
|
component_function = defaultNullOpts.mkAttrsOf types.str { } ''
|
||||||
|
@ -178,7 +181,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config {
|
||||||
};
|
};
|
||||||
|
|
||||||
settingsExample = {
|
settingsExample = {
|
||||||
colorscheme = "gruvbox";
|
colorscheme = "one";
|
||||||
component_function = {
|
component_function = {
|
||||||
gitbranch = "FugitiveHead";
|
gitbranch = "FugitiveHead";
|
||||||
};
|
};
|
||||||
|
|
|
@ -113,7 +113,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
colorscheme = "gruvbox";
|
colorscheme = "one";
|
||||||
component_function = {
|
component_function = {
|
||||||
gitbranch = "FugitiveHead";
|
gitbranch = "FugitiveHead";
|
||||||
readonly = "LightlineReadOnly";
|
readonly = "LightlineReadOnly";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue