Added Transparent.nvim plugin, disable Shade.nvim plugin (conflict)

This commit is contained in:
2024-11-28 00:21:35 +09:00
parent 13c1ad6d04
commit 2c05396209
3 changed files with 36 additions and 9 deletions
+18 -2
View File
@@ -2,8 +2,24 @@ return {
{
"rose-pine/neovim",
config = function()
vim.cmd("colorscheme rose-pine-moon")
-- vim.cmd.colorscheme("rose-pine")
require("rose-pine").setup({
variant = "moon",
extend_background_behind_borders = true,
enable = {
terminal = true,
legacy_highlights = true,
migrations = true,
},
styles = {
bold = true,
italic = true,
transparency = false
}
})
-- vim.cmd("colorscheme rose-pine-moon")
vim.cmd.colorscheme("rose-pine")
end
},
}
+7 -7
View File
@@ -1,9 +1,9 @@
return {
"valentino-sm/shade.nvim",
config = function ()
require("shade").setup({
overlay_opacity = 50,
opacity_step = 1,
})
end
-- "valentino-sm/shade.nvim",
-- config = function ()
-- require("shade").setup({
-- overlay_opacity = 50,
-- opacity_step = 1,
-- })
-- end
}
+11
View File
@@ -0,0 +1,11 @@
return {
"xiyaowong/transparent.nvim",
config = function ()
require("transparent").setup({
extra_groups = {
"NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
"NvimTreeNormal" -- NvimTree
},
})
end
}