14 lines
321 B
Lua
14 lines
321 B
Lua
local M = {}
|
|
|
|
function M.setup()
|
|
-- scroll up and down with shift+arrow
|
|
vim.keymap.set('n', '<S-Down>', '<C-E>')
|
|
vim.keymap.set('n', '<S-Up>', '<C-Y>')
|
|
--}}}
|
|
|
|
vim.keymap.set('n', '<Space>li', '<Cmd>LspInfo<CR>', { desc = 'Lsp info'})
|
|
vim.keymap.set('n', '<Space>ll', '<Cmd>LspLog<CR>', {desc = 'Lsp log'})
|
|
|
|
end
|
|
|
|
return M
|