summaryrefslogtreecommitdiff
path: root/lua/lvim/lsp
diff options
context:
space:
mode:
authorLostNeophyte <[email protected]>2023-02-04 16:22:41 +0100
committerGitHub <[email protected]>2023-02-04 17:22:41 +0200
commit60c7ad77fddf6d23a2427844f368d247fef1ed5a (patch)
tree1af3e0387c31134b2f25a1569824aa5590c60b43 /lua/lvim/lsp
parentc18cd3f0a89443d4265f6df8ce12fb89d627f09e (diff)
perf: lazy load most plugins (#3750)
* perf: lazy load most plugins * fix(lazy): suggested fixes for pref/lazyloading branch (#3754) fix(lazy): Suggested fixes from previous comments fix(lazy): applying suggestions from code review Co-authored-by: LostNeophyte <[email protected]> Co-authored-by: Pratyush Bharati <[email protected]> Co-authored-by: LostNeophyte <[email protected]> * chore: format * move lazy utils to modules.lua * simplify telescope actions * refactor: cmp_window local name * feat: more lazy loading cmds * refactor(cmp): minor clean up * perf: set lazy loading by default * refactor(alpha): remove broken lazy load * revert: explictily set lazy loading This reverts commit ba38193e4ebfa5acc8afa2b35247c5420d9a2739. * test: enable lazy-loading for bigfile * perf: defer projects and alpha to VimEnter * refactor(bufferline): add comment * perf: better lazy load dap/dapui * perf: lazy load ts-commentstring with Comment.nvim pre_hook --------- Co-authored-by: pr-313 <[email protected]> Co-authored-by: Pratyush Bharati <[email protected]> Co-authored-by: opalmay <[email protected]> Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'lua/lvim/lsp')
-rw-r--r--lua/lvim/lsp/config.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/lvim/lsp/config.lua b/lua/lvim/lsp/config.lua
index 6eecbf85..f6abeeca 100644
--- a/lua/lvim/lsp/config.lua
+++ b/lua/lvim/lsp/config.lua
@@ -96,12 +96,12 @@ return {
},
buffer_mappings = {
normal_mode = {
- ["K"] = { vim.lsp.buf.hover, "Show hover" },
- ["gd"] = { vim.lsp.buf.definition, "Goto Definition" },
- ["gD"] = { vim.lsp.buf.declaration, "Goto declaration" },
- ["gr"] = { vim.lsp.buf.references, "Goto references" },
- ["gI"] = { vim.lsp.buf.implementation, "Goto Implementation" },
- ["gs"] = { vim.lsp.buf.signature_help, "show signature help" },
+ ["K"] = { "<cmd>lua vim.lsp.buf.hover()<cr>", "Show hover" },
+ ["gd"] = { "<cmd>lua vim.lsp.buf.definition()<cr>", "Goto Definition" },
+ ["gD"] = { "<cmd>lua vim.lsp.buf.declaration()<cr>", "Goto declaration" },
+ ["gr"] = { "<cmd>lua vim.lsp.buf.references()<cr>", "Goto references" },
+ ["gI"] = { "<cmd>lua vim.lsp.buf.implementation()<cr>", "Goto Implementation" },
+ ["gs"] = { "<cmd>lua vim.lsp.buf.signature_help()<cr>", "show signature help" },
["gl"] = {
function()
local config = lvim.lsp.diagnostics.float