blob: 75e4a44f7cd03d2a2c4e7cef0b99d775f762f745 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
}
|