From c946ddda812c5c2d217061a9016eb8001970d659 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Sat, 19 Mar 2022 20:02:45 +0100 Subject: feat: add alpha.nvim integration (#1906) --- lua/lvim/core/which-key.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'lua/lvim/core/which-key.lua') diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index f169a234..511786f0 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -64,6 +64,7 @@ M.config = function() ["/"] = { "lua require('Comment.api').toggle_linewise_op(vim.fn.visualmode())", "Comment" }, }, mappings = { + [";"] = { "Alpha", "Dashboard" }, ["w"] = { "w!", "Save" }, ["q"] = { "q!", "Quit" }, ["/"] = { "lua require('Comment.api').toggle_current_linewise()", "Comment" }, -- cgit v1.2.3 From c11fa143c8bcd2670d02ce38b2675b408646ce28 Mon Sep 17 00:00:00 2001 From: Elazar Leibovich Date: Thu, 24 Mar 2022 16:41:38 +0200 Subject: chore: [Feature]: Keyboard shortcut for quickfix in Telescope (#2385) Lunarvim has keyboard shortcuts for various LSP searches, that feeds results to quickfix list. It is useful then to have a quick way to inspect LSP results in quickfix via Telescope. --- lua/lvim/core/which-key.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'lua/lvim/core/which-key.lua') diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index 511786f0..52b7a9ab 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -168,6 +168,7 @@ M.config = function() "Telescope lsp_dynamic_workspace_symbols", "Workspace Symbols", }, + e = { "Telescope quickfix", "Telescope Quickfix" }, }, L = { name = "+LunarVim", -- cgit v1.2.3