nixvim icon indicating copy to clipboard operation
nixvim copied to clipboard

[Bug] Bufferline plugin is not initialized

Open borisoid opened this issue 1 year ago • 1 comments

This line require('bufferline').setup${helpers.toLuaObject setupOptions} has no parens for a setup call. As a result I get require('bufferline').setup{} line in init.lua and the plugin is not initialized.

It does start showing nvim tabs though, idk why. image

Calling setup with parens fixes this. image

Every other plugin under plugins/bufferlines uses require(...).setup(${helpers.toLuaObject setupOptions}) (with parens) e.g.

borisoid avatar Feb 06 '24 10:02 borisoid