fix(ui): disable colorcolumn on floating window (#575)

This commit is contained in:
Lucas Tavares 2023-02-20 04:31:03 -03:00 committed by GitHub
parent 7339145a22
commit 43496fa82c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ function M:mount()
vim.wo[self.win].spell = false vim.wo[self.win].spell = false
vim.wo[self.win].wrap = true vim.wo[self.win].wrap = true
vim.wo[self.win].winhighlight = "Normal:LazyNormal" vim.wo[self.win].winhighlight = "Normal:LazyNormal"
vim.wo[self.win].colorcolumn = ""
end end
opts() opts()