Files
dotfiles/nvim/lua/plugins/colors.lua
2025-10-18 02:06:28 -03:00

17 lines
245 B
Lua

function theme(repo, opts)
opts = opts or {}
local theme = {
repo,
lazy = false,
}
return theme
end
return {
theme("nyoom-engineering/oxocarbon.nvim"),
theme("tiagovla/tokyodark.nvim"),
theme("kdheepak/monochrome.nvim"),
}