feat(colorscheme)!: LazyVim now loads the colorscheme configured with config.colorscheme. See the docs for more info

This commit is contained in:
Folke Lemaitre 2023-01-10 10:44:10 +01:00
parent 4d7455ad2c
commit 08f6375e4c
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 20 additions and 8 deletions

View file

@ -3,20 +3,12 @@ return {
-- tokyonight
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = { style = "moon" },
config = function(_, opts)
local tokyonight = require("tokyonight")
tokyonight.setup(opts)
tokyonight.load()
end,
},
-- catppuccin
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
},
}