diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-05 14:42:47 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-05 14:42:47 +0200 |
commit | c3bfe82077ca67ff23e65fcf8bba76a43208a524 (patch) | |
tree | 5453138f004e877043531698047f534315660103 /.config | |
parent | 909746024252ee055292174842be126481ba3396 (diff) |
nvim: Enable transparency in neovide
Diffstat (limited to '.config')
-rw-r--r-- | .config/nvim/after/plugin/colors.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/after/plugin/colors.lua b/.config/nvim/after/plugin/colors.lua index ea98761..18fc70b 100644 --- a/.config/nvim/after/plugin/colors.lua +++ b/.config/nvim/after/plugin/colors.lua @@ -5,6 +5,7 @@ require('rose-pine').setup({ function SetTheme(color) local hl = vim.api.nvim_set_hl vim.cmd.colorscheme(color or 'rose-pine') + vim.g.neovide_transparency = 0.9 hl(0, 'Normal', vim.g.neovide and { fg = '#C5C8C6', bg = '#2B303B', |