Files
tokyodark/lua/tokyo/init.lua

17 lines
381 B
Lua

local M = {}
local highlights = require('tokyo.highlights')
local terminal = require('tokyo.terminal')
local function colorscheme()
vim.cmd("hi clear")
if vim.fn.exists("syntax_on") then vim.cmd("syntax reset") end
vim.o.background = "dark"
vim.o.termguicolors = true
highlights.setup()
terminal.setup()
end
function M.setup() colorscheme() end
return M