15 lines
403 B
Lua
15 lines
403 B
Lua
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
|