summaryrefslogtreecommitdiff
path: root/lua/config/lazy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config/lazy.lua')
-rw-r--r--lua/config/lazy.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua
index 43362f0..b8b5927 100644
--- a/lua/config/lazy.lua
+++ b/lua/config/lazy.lua
@@ -47,6 +47,16 @@ require("lazy").setup({
end,
},
{
+ "ray-x/lsp_signature.nvim",
+ event = "VeryLazy",
+ opts = {
+ doc_lines = 0,
+ },
+ config = function(_, opts)
+ require("lsp_signature").setup(opts)
+ end,
+ },
+ {
--snippets
"L3MON4D3/LuaSnip",
version = "v2.*",
@@ -65,6 +75,25 @@ require("lazy").setup({
},
{
+ "folke/which-key.nvim",
+ event = "VeryLazy",
+ opts = {
+ win = {
+ border = "rounded",
+ },
+ },
+ keys = {
+ {
+ "<leader>?",
+ function()
+ require("which-key").show({ global = false })
+ end,
+ desc = "Buffer Local Keymaps (which-key)",
+ },
+ },
+ },
+
+ {
"christoomey/vim-tmux-navigator",
cmd = {
"TmuxNavigateLeft",