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" ''
|
||||
The colorscheme to use for lightline.
|
||||
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 { } ''
|
||||
|
@ -178,7 +181,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config {
|
|||
};
|
||||
|
||||
settingsExample = {
|
||||
colorscheme = "gruvbox";
|
||||
colorscheme = "one";
|
||||
component_function = {
|
||||
gitbranch = "FugitiveHead";
|
||||
};
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
colorscheme = "gruvbox";
|
||||
colorscheme = "one";
|
||||
component_function = {
|
||||
gitbranch = "FugitiveHead";
|
||||
readonly = "LightlineReadOnly";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue