mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
add: update config
This commit is contained in:
parent
93e5e8860f
commit
b319a12e99
7 changed files with 154 additions and 115 deletions
|
@ -694,4 +694,23 @@ return {
|
|||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"pojokcodeid/nvim-juliana",
|
||||
lazy = false,
|
||||
enabled = (color == "juliana") and true or false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
config = function()
|
||||
vim.api.nvim_create_autocmd("ColorScheme", {
|
||||
pattern = "*",
|
||||
callback = function()
|
||||
-- get colors
|
||||
local colors = require("nvim-juliana").colors()
|
||||
-- custom hilights
|
||||
local hi = vim.api.nvim_set_hl
|
||||
hi(0, "FoldColumn", { bg = colors.bg2 })
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue