This commit is contained in:
Chris Grieser 2024-11-04 20:19:52 +02:00 committed by GitHub
commit 717f5c5899
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -184,6 +184,9 @@ function M:mount()
Util.wo(self.win, "wrap", true) Util.wo(self.win, "wrap", true)
Util.wo(self.win, "winhighlight", "Normal:LazyNormal") Util.wo(self.win, "winhighlight", "Normal:LazyNormal")
Util.wo(self.win, "colorcolumn", "") Util.wo(self.win, "colorcolumn", "")
if vim.fn.exists('&winfixbuf') == 1 then
Util.wo(self.win, "winfixbuf", true)
end
end end
opts() opts()