From 269f8af802c57039f2d9d40814e7e9cfb940543e Mon Sep 17 00:00:00 2001 From: Henry Denny Date: Mon, 26 Feb 2024 20:44:06 +0000 Subject: [PATCH] Add `Shade.nvim`. --- lua/custom/plugins/shade.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/custom/plugins/shade.lua diff --git a/lua/custom/plugins/shade.lua b/lua/custom/plugins/shade.lua new file mode 100644 index 00000000..a4d9693e --- /dev/null +++ b/lua/custom/plugins/shade.lua @@ -0,0 +1,14 @@ +return { + "sunjon/Shade.nvim", + config = function() + require('shade').setup({ + overlay_opacity = 50, + opacity_step = 1, + keys = { + -- brightness_up = '', + -- brightness_down = '', + -- toggle = 's', + } + }) + end +}