summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-02-14 20:38:04 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-02-14 20:38:04 +0100
commitd1d6c4345ab227fcb71d704f83f009e83c96071d (patch)
tree1f6a902e2899bc28f2495f954a5e3ffab07db36e
parent4d24e45deaf2ac83c4f2847042ea38abf7939099 (diff)
nvim: Fix colorscheme
-rw-r--r--.config/nvim/after/plugin/colors.lua10
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')