enc: add sublime text theme juliana

This commit is contained in:
Pojok Code 2024-11-07 07:29:22 +07:00
parent 5200fa75aa
commit ea602aba6e
3 changed files with 27 additions and 8 deletions

View file

@ -0,0 +1,18 @@
return {
"pojokcodeid/nvim-juliana",
lazy = 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,
}

View file

@ -47,7 +47,7 @@ pcode.extras = {
pcode.themes = {
-- note: open remark only one
-- **:: Eva Theme ::** --
evatheme = "Eva-Dark",
-- evatheme = "Eva-Dark",
-- evatheme = "Eva-Dark-Italic",
-- evatheme = "Eva-Dark-Bold",
-- evatheme = "Eva-Light",
@ -63,6 +63,9 @@ pcode.themes = {
--
-- **:: Jetbrains Theme ::** --
-- jetbrains = "darcula-dark",
--
-- **:: Sublimetext Theme ::** --
sublimetext = "juliana",
}
-- activate config transparent_bg
pcode.transparent = false