mirror of https://github.com/LazyVim/starter
36 lines
639 B
Lua
36 lines
639 B
Lua
return {
|
|
-- {
|
|
-- "ellisonleao/gruvbox.nvim",
|
|
-- priority = 1000,
|
|
-- lazy = true,
|
|
-- config = true,
|
|
-- opts = {
|
|
-- terminal_colors = false,
|
|
-- },
|
|
--
|
|
-- },
|
|
{
|
|
"morhetz/gruvbox",
|
|
},
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
lazy = true,
|
|
opts = {
|
|
transparent = true,
|
|
style = "moon",
|
|
styles = {
|
|
sidebars = "transparent",
|
|
floats = "transparent",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"folke/zen-mode.nvim",
|
|
opts = {
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
},
|
|
},
|
|
}
|