farout.nvim/lua/tokyonight/init.lua

11 lines
163 B
Lua
Raw Normal View History

2021-04-17 19:22:55 +00:00
local util = require("tokyonight.util")
local theme = require("tokyonight.theme")
2021-04-20 11:39:38 +00:00
local M = {}
2021-05-12 09:19:28 +00:00
function M.colorscheme()
util.load(theme.setup())
end
2021-04-20 11:39:38 +00:00
return M