diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-02-14 20:38:04 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-14 20:38:04 +0100 |
commit | d1d6c4345ab227fcb71d704f83f009e83c96071d (patch) | |
tree | 1f6a902e2899bc28f2495f954a5e3ffab07db36e /.config/nvim/after/plugin | |
parent | 4d24e45deaf2ac83c4f2847042ea38abf7939099 (diff) |
nvim: Fix colorscheme
Diffstat (limited to '.config/nvim/after/plugin')
-rw-r--r-- | .config/nvim/after/plugin/colors.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/nvim/after/plugin/colors.lua b/.config/nvim/after/plugin/colors.lua index 799420e..a6b9837 100644 --- a/.config/nvim/after/plugin/colors.lua +++ b/.config/nvim/after/plugin/colors.lua @@ -1,5 +1,13 @@ +local nohl = { bg = "surface" } + require('rose-pine').setup { - disable_background = true + styles = { + transparency = true, + }, + highlight_groups = { + Pmenu = nohl, + StatusLine = nohl, + }, } vim.cmd.colorscheme('rose-pine') |