nixvim-for-share/config/colorscheme/transparency.nix
2025-07-26 12:43:01 +00:00

7 lines
205 B
Nix

{
# use this to sen transparency instead to keep nvim-scrollview bar transparent
extraConfigLua = ''
-- :highlight Normal guibg = none
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
'';
}