mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 13:20:44 +00:00
fix: add missing args to the dracula setup
This commit is contained in:
parent
7a81889afe
commit
35ea9e5da3
1 changed files with 7 additions and 2 deletions
|
@ -27,8 +27,13 @@
|
|||
};
|
||||
|
||||
dracula = {
|
||||
setup = ''
|
||||
require('dracula').setup({});
|
||||
setup = {
|
||||
style ? null,
|
||||
transparent,
|
||||
}: ''
|
||||
require('dracula').setup({
|
||||
transparent_bg = ${lib.boolToString transparent},
|
||||
});
|
||||
require('dracula').load();
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue