We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ec665 commit 71d25adCopy full SHA for 71d25ad
lua/custom/plugins/dressing.lua
@@ -0,0 +1,15 @@
1
+return {
2
+ "stevearc/dressing.nvim",
3
+ init = function()
4
+ ---@diagnostic disable-next-line: duplicate-set-field
5
+ vim.ui.select = function(...)
6
+ require("lazy").load({ plugins = { "dressing.nvim" } })
7
+ return vim.ui.select(...)
8
+ end
9
10
+ vim.ui.input = function(...)
11
12
+ return vim.ui.input(...)
13
14
+ end,
15
+}
0 commit comments