diff --git a/lua/plugins/shade.lua b/lua/plugins/shade.lua deleted file mode 100644 index 323d810..0000000 --- a/lua/plugins/shade.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - -- "valentino-sm/shade.nvim", - -- config = function () - -- require("shade").setup({ - -- overlay_opacity = 50, - -- opacity_step = 1, - -- }) - -- end -} diff --git a/lua/plugins/tint.lua b/lua/plugins/tint.lua new file mode 100644 index 0000000..43be6d2 --- /dev/null +++ b/lua/plugins/tint.lua @@ -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, +}