28 lines
516 B
Lua
28 lines
516 B
Lua
-- lazy.nvim
|
|
return {
|
|
"comfysage/cuddlefish.nvim",
|
|
config = function()
|
|
require("cuddlefish").setup({
|
|
theme = {
|
|
accent = "pink",
|
|
},
|
|
editor = {
|
|
transparent_background = false,
|
|
},
|
|
style = {
|
|
tabline = { "reverse" },
|
|
search = { "italic", "reverse" },
|
|
incsearch = { "italic", "reverse" },
|
|
types = { "italic" },
|
|
keyword = { "italic" },
|
|
comment = { "italic" },
|
|
},
|
|
overrides = function(colors)
|
|
return {}
|
|
end,
|
|
})
|
|
|
|
vim.cmd.colorscheme([[cuddlefish]])
|
|
end,
|
|
}
|