Dot_Files/.config/nvim/lua/core/theme.lua
2022-01-12 23:19:36 -06:00

17 lines
367 B
Lua
Executable File

local M = {}
M.setup = function()
vim.g.tokyonight_style = "night"
vim.g.tokyonight_transparent = true
vim.g.tokyonight_transparent_sidebar = true
local loaded, _ = pcall(vim.cmd, "colorscheme tokyonight")
if not loaded then
error("Colorscheme could not be loaded likely due to a packerstrap install, restart neovim once packer is done...")
end
end
return M