starter/lua/plugins/colorscheme.lua

43 lines
723 B
Lua
Raw Normal View History

2023-06-23 21:27:04 +08:00
return {
2023-11-22 20:46:37 +08:00
-- {
-- "ellisonleao/gruvbox.nvim",
-- priority = 1000,
-- lazy = true,
-- config = true,
-- opts = {
-- terminal_colors = false,
-- },
--
-- },
{
"morhetz/gruvbox",
},
2023-06-23 21:27:04 +08:00
{
"folke/tokyonight.nvim",
2023-11-22 20:46:37 +08:00
lazy = true,
2023-06-23 21:27:04 +08:00
opts = {
transparent = true,
2023-11-22 20:46:37 +08:00
style = "moon",
2023-06-23 21:27:04 +08:00
styles = {
sidebars = "transparent",
floats = "transparent",
},
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
},
2023-08-23 20:17:17 +08:00
{
"folke/zen-mode.nvim",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
},
2023-06-23 21:27:04 +08:00
}