mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
one: init colorscheme
This commit is contained in:
parent
d3252f7be8
commit
c3fc078107
3 changed files with 28 additions and 4 deletions
|
@ -195,13 +195,14 @@ in
|
|||
});
|
||||
|
||||
configure = {
|
||||
customRC = ''
|
||||
customRC = cfg.extraConfigVim + (optionalString (cfg.colorscheme != "") ''
|
||||
colorscheme ${cfg.colorscheme}
|
||||
'') + ''
|
||||
lua <<EOF
|
||||
${cfg.extraConfigLua}
|
||||
EOF
|
||||
'' + cfg.extraConfigVim + (optionalString (cfg.colorscheme != "") ''
|
||||
colorscheme ${cfg.colorscheme}
|
||||
'');
|
||||
'';
|
||||
|
||||
packages.nixvim = {
|
||||
start = filter (f: f != null) (map (x:
|
||||
if x ? plugin && x.optional == true then null else (x.plugin or x))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue