kickstart.nvim/lua/custom/plugins/theme.lua

13 lines
313 B
Lua

return {
'folke/tokyonight.nvim',
priority = 1000,
config = function()
require('tokyonight').setup {
style = 'moon', -- Options: night, storm, moon, day
transparent = false, -- Enable transparent background
terminal_colors = true,
}
vim.cmd [[colorscheme tokyonight]]
end,
}