nvim: Fix lspsage setup

This commit is contained in:
histalek 2023-02-04 21:05:36 +01:00
parent 5a6f898522
commit c2f6705932
No known key found for this signature in database
GPG key ID: ED1D6449704FDE03

View file

@ -1,9 +1,9 @@
local status_saga, saga = pcall(require, "lspsaga") local status, lspsaga = pcall(require, "lspsaga")
if not status_saga then if not status then
return return
end end
saga.init_lsp_saga({ lspsaga.setup({
move_in_saga = { prev = "<C-k>", next = "<C-j>" }, move_in_saga = { prev = "<C-k>", next = "<C-j>" },
finder_action_keys = { finder_action_keys = {
open = "<CR>", open = "<CR>",