stevearc / dressing.nvim

Neovim plugin to improve the default vim.ui interfaces
MIT License
1.73k stars 32 forks source link

Input prompt alignment #27

Closed mbenford closed 2 years ago

mbenford commented 2 years ago

I see that there is already support for customizing the input prompt alignment, but it is currently not exposed and alignment is hard-coded as left. Will it be eventually promoted to a public option that we can use?

stevearc commented 2 years ago

Added! Set it with

require('dressing').setup({
  input = {
    prompt_align = 'left',
  }
})
mbenford commented 2 years ago

Whoa, thanks for such a quick reply! It works perfectly! :)