diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 11:17:27 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 11:17:27 +0200 |
| commit | e4c6e0bdc40df9f5420eed3f57553f6652cc033f (patch) | |
| tree | c1830dfbb5d0e585c8db87cddd123e2e32f2f00b /plugin | |
| parent | 1af92e55723a9b16327faf35a281745a71d1b6d0 (diff) | |
| download | nvim-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.lua | 2 |
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 |
