farout.nvim/lua/tokyonight/init.lua
2021-05-12 11:19:28 +02:00

11 lines
163 B
Lua

local util = require("tokyonight.util")
local theme = require("tokyonight.theme")
local M = {}
function M.colorscheme()
util.load(theme.setup())
end
return M