summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-05-22 11:17:27 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-05-22 11:17:27 +0200
commite4c6e0bdc40df9f5420eed3f57553f6652cc033f (patch)
treec1830dfbb5d0e585c8db87cddd123e2e32f2f00b /plugin
parent1af92e55723a9b16327faf35a281745a71d1b6d0 (diff)
downloadnvim-config-e4c6e0bdc40df9f5420eed3f57553f6652cc033f.tar.gz
nvim-config-e4c6e0bdc40df9f5420eed3f57553f6652cc033f.zip
misc(nvim): rounded borders and default bg color for floating windows
Diffstat (limited to 'plugin')
-rw-r--r--plugin/40-colors.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugin/40-colors.lua b/plugin/40-colors.lua
index 21c93e7..914ec2b 100644
--- a/plugin/40-colors.lua
+++ b/plugin/40-colors.lua
@@ -57,11 +57,9 @@ local function adjust_highlight()
if vim.o.background == "light" then
vim.api.nvim_set_hl(0, "TabLineSel", { bg = "#edffd5" })
vim.api.nvim_set_hl(0, "Cursorline", { bg = "#edffd5" })
- vim.api.nvim_set_hl(0, "NormalFloat", { bg = solarized_colors.base2 })
elseif vim.o.background == "dark" then
vim.api.nvim_set_hl(0, "TabLineSel", { bg = "#043624" })
vim.api.nvim_set_hl(0, "Cursorline", { bg = "#043624" })
- vim.api.nvim_set_hl(0, "NormalFloat", { bg = solarized_colors.base02 })
end
end
end