[docgen] Update README.md

skip-checks: true
This commit is contained in:
Github Actions 2022-01-18 00:03:13 +00:00
parent ed378363a0
commit 74c953a67c
2 changed files with 12 additions and 0 deletions

View File

@ -117,6 +117,9 @@ want to tweak, call this function:
```lua
require('dressing').setup({
input = {
-- Set to false to disable the vim.ui.input implementation
enabled = true,
-- Default prompt string
default_prompt = "➤ ",
@ -144,6 +147,9 @@ require('dressing').setup({
get_config = nil,
},
select = {
-- Set to false to disable the vim.ui.select implementation
enabled = true,
-- Priority list of preferred vim.select implementations
backend = { "telescope", "fzf_lua", "fzf", "builtin", "nui" },

View File

@ -7,6 +7,9 @@ Configure dressing.nvim by calling the setup() function.
>
require('dressing').setup({
input = {
-- Set to false to disable the vim.ui.input implementation
enabled = true,
-- Default prompt string
default_prompt = "➤ ",
@ -34,6 +37,9 @@ Configure dressing.nvim by calling the setup() function.
get_config = nil,
},
select = {
-- Set to false to disable the vim.ui.select implementation
enabled = true,
-- Priority list of preferred vim.select implementations
backend = { "telescope", "fzf_lua", "fzf", "builtin", "nui" },