mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
set colorscheme before setting globals (#46)
This commit is contained in:
parent
4adcb35851
commit
a38d531bf4
1 changed files with 13 additions and 8 deletions
|
@ -75,9 +75,14 @@ in
|
|||
|
||||
config =
|
||||
let
|
||||
customRC = config.extraConfigVim + (optionalString (config.extraConfigLua != "" || config.extraConfigLuaPre != "" || config.extraConfigLuaPost != "") ''
|
||||
customRC =
|
||||
(optionalString (config.extraConfigLuaPre != "") ''
|
||||
lua <<EOF
|
||||
${config.extraConfigLuaPre}
|
||||
EOF
|
||||
'') +
|
||||
config.extraConfigVim + (optionalString (config.extraConfigLuaPre != "" || config.extraConfigLuaPost != "") ''
|
||||
lua <<EOF
|
||||
${config.extraConfigLua}
|
||||
${config.extraConfigLuaPost}
|
||||
EOF
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue