Replaces "shade" plugin with "tint" plugin

This commit is contained in:
2025-08-12 01:54:46 +09:00
parent 713e3f4f22
commit 23ebb8f244
2 changed files with 11 additions and 9 deletions
-9
View File
@@ -1,9 +0,0 @@
return {
-- "valentino-sm/shade.nvim",
-- config = function ()
-- require("shade").setup({
-- overlay_opacity = 50,
-- opacity_step = 1,
-- })
-- end
}
+11
View File
@@ -0,0 +1,11 @@
return {
"sheimer/tint.nvim",
opts = {
tint = -5,
saturation = 0.6,
tint_background_colors = true,
},
config = function (_, opts)
require("tint").setup(opts)
end,
}