github-nvim-theme icon indicating copy to clipboard operation
github-nvim-theme copied to clipboard

Is there any way to set up the background color as transparent?

Open sebalfaro opened this issue 1 year ago • 1 comments

Hey there, wanted to change the background color of the editor as transparent, something like this, is it possible?

image

sebalfaro avatar May 31 '24 17:05 sebalfaro

I do believe neovim supports this? Probably all you have to do is just unset the background color of the Normal highlight group. If it works, it should show the background of your terminal or GUI (unless you have configured your terminal or GUI to be transparent as well, in which case you should be able to see whatever is beneath the OS window).

Actually, there is a transparent option that you can set: see here. Try that first:

   options = {
-    transparency = true,
+    transparent = true,
   },

tmillr avatar Jun 04 '24 08:06 tmillr

I am closing this issue as this feature is currently implemented and appears to be working correctly.

tmillr avatar Jul 09 '24 23:07 tmillr