We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2704069 + 1df46f9 commit 0fd2d5aCopy full SHA for 0fd2d5a
lua/incline/winline.lua
@@ -54,7 +54,13 @@ function Winline:buf()
54
return self._buf
55
end
56
self._buf = a.nvim_create_buf(false, true)
57
+
58
a.nvim_buf_set_option(self._buf, 'filetype', 'incline')
59
+ a.nvim_buf_set_option(self._buf, 'buftype', 'nofile')
60
+ a.nvim_buf_set_option(self._buf, 'bufhidden', 'wipe')
61
+ a.nvim_buf_set_option(self._buf, 'buflisted', false)
62
+ a.nvim_buf_set_option(self._buf, 'swapfile', false)
63
64
65
66
0 commit comments