Files
zenbones-theme/colors/zenflesh-lush.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
870 B
Lua
Raw Normal View History

2021-09-14 06:38:07 +08:00
vim.opt.background = "dark"
2021-09-11 13:21:35 +08:00
vim.g.colors_name = "zenflesh-lush"
2021-10-09 16:27:46 +08:00
require("zenflesh.term").setup()
2021-09-11 13:21:35 +08:00
-- By setting our module to nil, we clear lua's cache,
-- which means the require ahead will *always* occur.
--
-- This isn't strictly required but it can be a useful trick if you are
-- incrementally editing your config a lot and want to be sure your themes
-- changes are being picked up without restarting neovim.
--
-- Note if you're working in on your theme and have :Lushify'd the buffer,
-- your changes will be applied with our without the following line.
--
-- The performance impact of this call can be measured in the hundreds of
-- *nanoseconds* and such could be considered "production safe".
2021-09-21 18:55:56 +08:00
package.loaded["zenflesh.palette"] = nil
2021-09-11 13:21:35 +08:00
package.loaded["zenflesh"] = nil
-- include our theme file and pass it to lush to apply
require "lush"(require "zenflesh")