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

21 lines
442 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
2022-01-10 09:55:15 -06:00
local loaded, _ = pcall(vim.cmd, "colorscheme tokyonight")
if not loaded then
vim.notify(
"Colorscheme could not be loaded likely due to a packerstrap install, restart neovim once packer is done..."
)
end
vim.cmd[[
hi SpecialKey guifg=#61AFEF
]]
2022-01-10 09:55:15 -06:00
end
return M