mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-28 12:49:25 +00:00
23 lines
353 B
Lua
23 lines
353 B
Lua
return {
|
|
{
|
|
"gthelding/monokai-pro.nvim",
|
|
config = function()
|
|
require("monokai-pro").setup({
|
|
filter = "ristretto",
|
|
override = function()
|
|
return {
|
|
NonText = { fg = "#948a8b" },
|
|
}
|
|
end,
|
|
})
|
|
vim.cmd([[colorscheme monokai-pro]])
|
|
end,
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "monokai-pro",
|
|
},
|
|
},
|
|
}
|