[UPDATED] highlihgt groups for snacks borders globaly to use termnal colours
This commit is contained in:
13
init.lua
13
init.lua
@@ -16,6 +16,19 @@ end
|
|||||||
-- colourscheme
|
-- colourscheme
|
||||||
vim.cmd("colorscheme wildcharm")
|
vim.cmd("colorscheme wildcharm")
|
||||||
vim.api.nvim_set_hl(0, "Normal", { bg = "#18131e" })
|
vim.api.nvim_set_hl(0, "Normal", { bg = "#18131e" })
|
||||||
|
vim.api.nvim_set_hl(0, "VertSplit", {
|
||||||
|
fg = "NONE", -- Set the foreground (border color)
|
||||||
|
bg = "NONE", -- Make the background transparent
|
||||||
|
ctermbg = 0, -- For terminal background color
|
||||||
|
ctermfg = 15, -- For terminal foreground color
|
||||||
|
})
|
||||||
|
vim.api.nvim_set_hl(0, "Pmenu", {
|
||||||
|
|
||||||
|
fg = "NONE", -- Set the foreground (border color)
|
||||||
|
bg = "NONE", -- Make the background transparent
|
||||||
|
ctermbg = 0, -- For terminal background color
|
||||||
|
ctermfg = 15, -- For terminal foreground color
|
||||||
|
})
|
||||||
|
|
||||||
-- clipboard
|
-- clipboard
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user