26 lines
514 B
Lua
26 lines
514 B
Lua
return {
|
|
-- NOTE: [ THEMES ]
|
|
-- {
|
|
-- 'yorumicolors/yorumi.nvim',
|
|
-- },
|
|
-- {
|
|
-- 'savq/melange-nvim',
|
|
-- },
|
|
-- {
|
|
-- 'sainnhe/gruvbox-material',
|
|
-- lazy = false,
|
|
-- config = function()
|
|
-- vim.g.gruvbox_material_background = 'medium'
|
|
-- vim.g.gruvbox_material_enable_italic = true
|
|
-- vim.cmd 'colorscheme gruvbox-material'
|
|
-- end,
|
|
-- },
|
|
{
|
|
'rebelot/kanagawa.nvim',
|
|
lazy = false,
|
|
config = function()
|
|
vim.cmd 'colorscheme kanagawa'
|
|
end,
|
|
},
|
|
}
|