diff options
author | Christian Chiarulli <[email protected]> | 2022-09-15 23:33:08 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-15 23:33:08 -0400 |
commit | a4c2dc4d0b638a50c3219f247b09e6238a44ec50 (patch) | |
tree | 250527d4ca3a5644d6d6fbae80d9d5a2abee5b0d /lua/lvim/lsp/config.lua | |
parent | 464ad8b0035cbcaf4864d14da598b77a939026d8 (diff) |
refactor: small improvements (#3021)
Diffstat (limited to 'lua/lvim/lsp/config.lua')
-rw-r--r-- | lua/lvim/lsp/config.lua | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/lvim/lsp/config.lua b/lua/lvim/lsp/config.lua index 96a1b823..7e91db52 100644 --- a/lua/lvim/lsp/config.lua +++ b/lua/lvim/lsp/config.lua @@ -79,11 +79,6 @@ return { style = "minimal", border = "rounded", }, - peek = { - max_height = 15, - max_width = 30, - context = 10, - }, on_attach_callback = nil, on_init_callback = nil, automatic_configuration = { @@ -100,12 +95,6 @@ return { ["gr"] = { vim.lsp.buf.references, "Goto references" }, ["gI"] = { vim.lsp.buf.implementation, "Goto Implementation" }, ["gs"] = { vim.lsp.buf.signature_help, "show signature help" }, - ["gp"] = { - function() - require("lvim.lsp.peek").Peek "definition" - end, - "Peek definition", - }, ["gl"] = { function() local config = lvim.lsp.diagnostics.float |