nvim: Fix lspsage setup
This commit is contained in:
parent
5a6f898522
commit
c2f6705932
1 changed files with 3 additions and 3 deletions
|
@ -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>",
|
||||||
|
|
Loading…
Add table
Reference in a new issue