Skip to content

Commit

Permalink
[docgen] Update README.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
Github Actions committed Jan 17, 2022
1 parent 1f91d26 commit 333d853
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ require('dressing').setup({
},
select = {
-- Priority list of preferred vim.select implementations
backend = { "telescope", "fzf", "builtin", "nui" },
backend = { "telescope", "fzf_lua", "fzf", "builtin", "nui" },

-- Options for telescope selector
telescope = {
Expand All @@ -161,6 +161,14 @@ require('dressing').setup({
},
},

-- Options for fzf_lua selector
fzf_lua = {
winopts = {
width = 0.5,
height = 0.4,
},
},

-- Options for nui Menu
nui = {
position = "50%",
Expand Down
10 changes: 9 additions & 1 deletion doc/dressing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Configure dressing.nvim by calling the setup() function.
},
select = {
-- Priority list of preferred vim.select implementations
backend = { "telescope", "fzf", "builtin", "nui" },
backend = { "telescope", "fzf_lua", "fzf", "builtin", "nui" },
-- Options for telescope selector
telescope = {
Expand All @@ -51,6 +51,14 @@ Configure dressing.nvim by calling the setup() function.
},
},
-- Options for fzf_lua selector
fzf_lua = {
winopts = {
width = 0.5,
height = 0.4,
},
},
-- Options for nui Menu
nui = {
position = "50%",
Expand Down

0 comments on commit 333d853

Please sign in to comment.