starter/lua/plugins/colorscheme.lua

37 lines
591 B
Lua
Raw Normal View History

2024-02-09 05:33:46 +08:00
return {
{
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
config = function()
require("catppuccin").setup({
flavour = "macchiato",
})
end,
},
{
"navarasu/onedark.nvim",
lazy = true,
name = "onedark",
config = function()
require("onedark").setup({
2024-07-30 02:01:52 +08:00
style = "warmer",
2024-02-09 05:33:46 +08:00
})
end,
},
2024-02-29 22:49:32 +08:00
{
"morhetz/gruvbox",
lazy = true,
name = "gruvbox",
config = function()
2024-05-21 22:24:33 +08:00
vim.o.background = "dark"
2024-02-29 22:49:32 +08:00
end,
},
2024-02-09 05:33:46 +08:00
{
"LazyVim/LazyVim",
opts = {
2024-05-21 22:24:33 +08:00
colorscheme = "onedark",
2024-02-09 05:33:46 +08:00
},
},
}