mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-26 15:06:45 +00:00
fix: accept missing transparent attribute
This commit is contained in:
parent
c874b7fa99
commit
77a10e8ee4
1 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
||||||
{lib}: {
|
{lib}: {
|
||||||
onedark = {
|
onedark = {
|
||||||
setup = {style ? "dark"}: ''
|
setup = {
|
||||||
|
style ? "dark",
|
||||||
|
transparent,
|
||||||
|
}: ''
|
||||||
-- OneDark theme
|
-- OneDark theme
|
||||||
require('onedark').setup {
|
require('onedark').setup {
|
||||||
style = "${style}"
|
style = "${style}"
|
||||||
|
@ -11,7 +14,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
tokyonight = {
|
tokyonight = {
|
||||||
setup = {style ? "night"}: ''
|
setup = {
|
||||||
|
style ? "night",
|
||||||
|
transparent,
|
||||||
|
}: ''
|
||||||
vim.cmd[[colorscheme tokyonight-${style}]]
|
vim.cmd[[colorscheme tokyonight-${style}]]
|
||||||
'';
|
'';
|
||||||
styles = ["day" "night" "storm" "moon"];
|
styles = ["day" "night" "storm" "moon"];
|
||||||
|
|
Loading…
Reference in a new issue