mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 11:08:53 +02:00
Check if colorscheme is set to null (#21)
This commit is contained in:
parent
16523fa1fc
commit
e246034491
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ in
|
||||||
});
|
});
|
||||||
|
|
||||||
configure = {
|
configure = {
|
||||||
customRC = cfg.extraConfigVim + (optionalString (cfg.colorscheme != "") ''
|
customRC = cfg.extraConfigVim + (optionalString (cfg.colorscheme != "" && cfg.colorscheme != null) ''
|
||||||
colorscheme ${cfg.colorscheme}
|
colorscheme ${cfg.colorscheme}
|
||||||
'') + ''
|
'') + ''
|
||||||
lua <<EOF
|
lua <<EOF
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue