mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
enc: add sublime text theme juliana
This commit is contained in:
parent
5200fa75aa
commit
ea602aba6e
3 changed files with 27 additions and 8 deletions
18
lua/pcode/plugins/theme/sublimetext.lua
Normal file
18
lua/pcode/plugins/theme/sublimetext.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue