mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 04:45:59 +01:00
Merge pull request #93 from horriblename/feat-tokyonight-transparent
feat: add transparency support for tokyonight
This commit is contained in:
commit
18c502006f
2 changed files with 14 additions and 0 deletions
11
docs/release-notes/rl-0.5.adoc
Normal file
11
docs/release-notes/rl-0.5.adoc
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
[[sec-release-0.5]]
|
||||||
|
== Release 0.5
|
||||||
|
|
||||||
|
|
||||||
|
[[sec-release-0.5-changelog]]
|
||||||
|
=== Changelog
|
||||||
|
|
||||||
|
|
||||||
|
https://github.com/horriblename[horriblename]:
|
||||||
|
|
||||||
|
* Add transparency support for tokyonight theme
|
|
@ -18,6 +18,9 @@
|
||||||
style ? "night",
|
style ? "night",
|
||||||
transparent,
|
transparent,
|
||||||
}: ''
|
}: ''
|
||||||
|
require('tokyonight').setup {
|
||||||
|
transparent = ${lib.boolToString 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