farout.nvim/lua/tokyonight/extra/init.lua

34 lines
872 B
Lua
Raw Normal View History

2021-04-20 12:24:44 +00:00
package.path = "./lua/?/init.lua;./lua/?.lua"
local config = require("tokyonight.config")
local function write(str, fileName)
2021-07-06 14:40:18 +00:00
print("[write] extra/" .. fileName)
local file = io.open("extras/" .. fileName, "w")
file:write(str)
file:close()
2021-04-20 12:24:44 +00:00
end
-- map of plugin name to plugin extension
2021-07-06 14:40:18 +00:00
local extras = {
kitty = "conf",
fish = "fish",
alacritty = "yml",
wezterm = "toml",
tmux = "tmux",
xresources = "Xresources",
xfceterm = "theme",
2021-07-06 14:40:18 +00:00
}
2021-05-21 12:51:45 +00:00
local styles = { "storm", "night", "day" }
2021-04-20 12:24:44 +00:00
2021-05-21 12:51:45 +00:00
for extra, ext in pairs(extras) do
2021-07-06 14:40:18 +00:00
local plugin = require("tokyonight.extra." .. extra)
for _, style in pairs(styles) do
config.style = style
config = config or require("tokyonight.config")
config.transform_colors = true
local colors = require("tokyonight.colors").setup(config)
write(plugin.generate(colors), extra .. "_tokyonight_" .. style .. "." .. ext)
end
2021-05-21 12:51:45 +00:00
end