j-morano / buffer_manager.nvim

A simple plugin to easily manage Neovim buffers.
MIT License
232 stars 12 forks source link

Support for custom options in quick_menu #20

Closed haru02w closed 1 year ago

haru02w commented 1 year ago

I really would like to use relative numbers to reorder my buffers inside quick_menu. (of course, setting line_keys="")

j-morano commented 1 year ago

Hi! Thank you for the feedback. I added a commit solving this issue. Now you can specify in the setup function your own options for the buffer menu window. Here is an example:

require("buffer_manager").setup({
  win_extra_options = {
    relativenumber = true,
  },
})

I hope this solution works for you. If not, feel free to reopen the issue.