From d098ff9051851be05706b26abac25e82e6e15215 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Sat, 11 Sep 2021 13:21:35 +0800 Subject: [PATCH] add zenflesh-lush color --- colors/zenflesh-lush.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 colors/zenflesh-lush.lua diff --git a/colors/zenflesh-lush.lua b/colors/zenflesh-lush.lua new file mode 100644 index 0000000..0064e9b --- /dev/null +++ b/colors/zenflesh-lush.lua @@ -0,0 +1,21 @@ +vim.opt.background = "light" +vim.g.colors_name = "zenflesh-lush" + +require("zenbones.terminal").setup() + +-- 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". +package.loaded["zenflesh"] = nil + +-- include our theme file and pass it to lush to apply +require "lush"(require "zenflesh")