update-2022-04-12

This commit is contained in:
Lee Tang
2022-04-12 23:03:05 +08:00
parent 0b56283159
commit 76e08244e7
17 changed files with 290 additions and 68 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',
},
},
}