nvim/lua/plugins/theme.lua

15 lines
403 B
Lua
Raw Normal View History

2022-12-31 17:43:31 +01:00
local M = {
'folke/tokyonight.nvim',
lazy = true, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
}
function M.config()
require('tokyonight').setup {
transparent = true,
style = 'night', -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
}
end
return M