From d4c71cbd0d44a7b98fabeea0df8f49d7e9991877 Mon Sep 17 00:00:00 2001 From: Hadeed Ahmad Date: Tue, 29 Aug 2023 07:15:39 +0500 Subject: [PATCH] Install lspconfig --- nvim/lua/plugins.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index ffa3e0a..ce21fe2 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -9,7 +9,7 @@ return { { "ggandor/leap.nvim", config = function() - require("leap").set_default_keymaps() + require("leap").add_default_mappings() vim.api.nvim_set_hl(0, 'LeapBackdrop', { link = 'Comment' }) end }, @@ -21,5 +21,6 @@ return { { "windwp/nvim-autopairs", config = true }, "fladson/vim-kitty", - "tpope/vim-unimpaired" + "tpope/vim-unimpaired", + "neovim/nvim-lspconfig" }