22 lines
439 B
Lua
22 lines
439 B
Lua
local branch = nil
|
|
if vim.version().minor == 7 then
|
|
branch = 'nvim-0.7'
|
|
elseif vim.version().minor == 5 then
|
|
branch = 'nvim-0.5'
|
|
end
|
|
|
|
return { 'stevearc/dressing.nvim',
|
|
disable = vim.version().minor < 5,
|
|
branch = branch,
|
|
requires = 'nvim-telescope/telescope.nvim',
|
|
function()
|
|
require('dressing').setup {
|
|
input = {
|
|
title_pos = "center",
|
|
border = 'solid',
|
|
relative = "win"
|
|
}
|
|
}
|
|
end
|
|
}
|