initial commit

This commit is contained in:
2023-11-30 17:30:12 +01:00
commit 7b54fcfcd2
3 changed files with 114 additions and 0 deletions

8
colors/lupan.lua Normal file
View File

@ -0,0 +1,8 @@
vim.g.colors_name = 'lupan'
if vim.o.background == "dark" then
package.loaded["lupancolors.lupan"] = nil
require("lush")(require("lupancolors.lupan"))
else
package.loaded["lupancolors.lupanlight"] = nil
require("lush")(require("lupancolors.lupanlight"))
end