mig packer to lazy and archive

Signed-off-by: d0zingcat <leewtang@gmail.com>
This commit is contained in:
d0zingcat
2024-06-03 11:18:10 +08:00
parent bd35155080
commit 65b75edd9a
56 changed files with 764 additions and 25 deletions

View File

@@ -0,0 +1,25 @@
local g = vim.g
local border_chars = {
TOP_LEFT = '',
TOP_RIGHT = '',
MID_HORIZONTAL = '',
MID_VERTICAL = '',
BOTTOM_LEFT = '',
BOTTOM_RIGHT = '',
}
g.lsp_utils_location_opts = {
mode = 'split',
preview = {
title = 'Location Preview',
border = true,
border_chars = border_chars,
},
keymaps = {
n = {
['<C-n>'] = 'j',
['<C-p>'] = 'k',
},
},
}