mirror of https://github.com/LazyVim/starter
30 lines
536 B
Lua
30 lines
536 B
Lua
return {
|
|
{ "ellisonleao/gruvbox.nvim" },
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
opts = {
|
|
transparent = true,
|
|
styles = {
|
|
sidebars = "transparent",
|
|
floats = "transparent",
|
|
},
|
|
},
|
|
},
|
|
{ "wakatime/vim-wakatime" },
|
|
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "gruvbox",
|
|
},
|
|
},
|
|
{
|
|
"folke/zen-mode.nvim",
|
|
opts = {
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
},
|
|
},
|
|
}
|