mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
add: nvim fold config
This commit is contained in:
parent
5518885b31
commit
e2ba1a6fb2
5 changed files with 160 additions and 102 deletions
|
@ -215,7 +215,17 @@ end
|
|||
|
||||
return {
|
||||
-- color scheme
|
||||
{ "luisiacc/gruvbox-baby", lazy = true, enabled = gruvbox },
|
||||
{
|
||||
"luisiacc/gruvbox-baby",
|
||||
lazy = true,
|
||||
enabled = gruvbox,
|
||||
config = function()
|
||||
local colors = require("gruvbox-baby.colors").config()
|
||||
vim.g.gruvbox_baby_highlights = {
|
||||
StatusLine = { fg = colors.fg, bg = "NONE" },
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
"Mofiqul/dracula.nvim",
|
||||
enabled = dracula,
|
||||
|
@ -368,6 +378,7 @@ return {
|
|||
variables = "none",
|
||||
},
|
||||
highlights = {
|
||||
Search = { fg = "$bg0", bg = "$bg_yellow" },
|
||||
-- BorderBG = { fg = "#333842" }, -- untuk custom brder color cmp
|
||||
-- overide indent line fill color
|
||||
NvimTreeNormal = { fg = "$fg", bg = "$bg0" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue