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

42 lines
1.1 KiB
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").options
2021-04-20 12:24:44 +00:00
local function write(str, fileName)
2022-09-05 10:06:20 +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 = {
2022-09-05 10:06:20 +00:00
kitty = "conf",
fish = "fish",
alacritty = "yml",
wezterm = "toml",
tmux = "tmux",
xresources = "Xresources",
xfceterm = "theme",
foot = "ini",
tilix = "json",
2021-07-06 14:40:18 +00:00
}
-- map of style to style name
2022-09-05 10:06:20 +00:00
local styles = {
storm = " Storm",
night = "",
day = " Day",
}
2021-04-20 12:24:44 +00:00
2021-05-21 12:51:45 +00:00
for extra, ext in pairs(extras) do
2022-09-05 10:06:20 +00:00
local plugin = require("tokyonight.extra." .. extra)
for style, style_name in pairs(styles) do
config.style = style
local colors = require("tokyonight.colors").setup({ transform = true })
2022-09-05 10:06:20 +00:00
local fname = extra .. "_tokyonight_" .. style .. "." .. ext
colors["_upstream_url"] = "https://github.com/folke/tokyonight.nvim/raw/main/extras/" .. fname
colors["_style_name"] = "Tokyo Night" .. style_name
write(plugin.generate(colors), fname)
end
2021-05-21 12:51:45 +00:00
end