Merge pull request #123 from NotAShelf/fix-dracula-theme

This commit is contained in:
raf 2023-08-10 18:29:01 +03:00 committed by GitHub
commit 2ce28cbb85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,8 +27,13 @@
};
dracula = {
setup = ''
require('dracula').setup({});
setup = {
style ? null,
transparent,
}: ''
require('dracula').setup({
transparent_bg = ${lib.boolToString transparent},
});
require('dracula').load();
'';
};