Dot_Files/.config/nvim/lua/core/theme.lua

12 lines
197 B
Lua
Raw Normal View History

2022-01-10 09:55:15 -06:00
local M = {}
M.setup = function()
vim.g.tokyonight_style = "night"
vim.g.tokyonight_transparent = true
vim.g.tokyonight_transparent_sidebar = true
vim.cmd("colorscheme tokyonight")
end
return M