1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/themes/helpers.lua
2023-01-22 01:22:38 +01:00

15 lines
311 B
Lua

local theme = require("nix.theme").name
local M = {}
function M.theme_contains(name)
return string.find(theme, name) ~= nil
end
function M.variant(name)
-- +1 for 1-indexed strings and +1 for the space between name and variant
return string.lower(string.sub(theme, string.len(name) + 2))
end
return M