yes there's a bit of java in my nvim config why do you ask?

This commit is contained in:
2024-08-09 02:45:31 -04:00
parent ad76983d96
commit c489d39369
104 changed files with 2058 additions and 2796 deletions

View File

@ -0,0 +1,21 @@
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
}