Files
nvim/lua/conf/plugins/dressing.lua
2025-04-17 11:41:32 -05:00

20 lines
395 B
Lua

local branch = nil
if vim.fn.has("nvim-0.7.0") then
branch = 'nvim-0.7'
elseif vim.fn.has("nvim-0.5.0") then
branch = 'nvim-0.5'
end
return { 'stevearc/dressing.nvim',
disable = true or not vim.fn.has("nvim-0.5.0"),
branch = branch,
requires = 'nvim-telescope/telescope.nvim',
function()
require('dressing').setup {
input = {
enabled = false
}
}
end
}