mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-28 14:34:34 +02:00
fix: nvim-notify background
This commit is contained in:
parent
be59c58be4
commit
7482132068
3 changed files with 5 additions and 4 deletions
|
@ -14,7 +14,7 @@
|
|||
-- solarized-osaka
|
||||
-- darcula-dark
|
||||
-- juliana
|
||||
vim.g.pcode_colorscheme = "dracula"
|
||||
vim.g.pcode_colorscheme = "darcula-dark"
|
||||
|
||||
-- 0 =off 1= on
|
||||
vim.g.pcode_transparent_mode = 0
|
||||
|
|
|
@ -24,7 +24,8 @@ return {
|
|||
config = function()
|
||||
local notify = require "notify"
|
||||
-- this for transparency
|
||||
notify.setup { background_colour = "#000000", render = "compact" }
|
||||
-- notify.setup { background_colour = "#000000", render = "compact" }
|
||||
notify.setup { render = "compact" }
|
||||
-- this overwrites the vim notify function
|
||||
vim.notify = notify.notify
|
||||
end,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue