diff --git a/lua/plugins.lua b/lua/plugins.lua index 34fc867..6df3ffd 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -157,12 +157,7 @@ require("lazy").setup({ vim.o.timeout = true vim.o.timeoutlen = 300 end, - opts = { - hidden = { "", "", "", "", "^:", "^ ", "^call ", "^lua " }, - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - }, + opts = {}, config = function(_, opts) require("which-key-config") require("which-key").setup(opts) @@ -316,9 +311,3 @@ vim.diagnostic.config({ }) vim.cmd("colorscheme catppuccin") - ---vim.api.nvim_create_autocmd({ "VimLeave" }, { ---callback = function() ---vim.cmd("close") ---end, ---}) diff --git a/lua/which-key-config.lua b/lua/which-key-config.lua index fba8ab3..b279a12 100644 --- a/lua/which-key-config.lua +++ b/lua/which-key-config.lua @@ -1,95 +1,25 @@ local wk = require("which-key") -wk.register({ - t = { - ["1"] = { - "BufferGoto 1", - "Go to Buffer 1", - }, - d = { - "BufferClose", - "Close Current Buffer", - }, - }, - f = { - "Telescope - Finder", - f = { - "Telescope find_files", - "Find File", - }, - g = { - "Telescope live_grep", - "Live Grep", - }, - b = { - "Telescope buffers", - "Find Open Buffers", - }, - h = { - "Telescope help_tags", - "Find Help", - }, - i = { - "Telescope builtin", - "Search all Telescope builtins", - }, - t = { - "TodoTelescope ", - "Open Todo in Telescope", - }, - u = { - "UrlView", - "Display and open URLs in current buffer", - }, - }, - n = { - "Terminal", - b = { - "lua _Lazygit_toggle()", - "Open Lazygit", - }, - j = { - "ToggleTerm", - "Open Terminal", - }, - }, - c = { - "NerdCommenter", - }, - r = { - "lua vim.lsp.buf.rename()", - "Rename a token", - }, - x = { - "Toggle Trouble", - x = { - "Trouble diagnostics toggle", - "Open Trouble", - }, - q = { - "Trouble quickfix toggle", - "", - }, - l = { - "Trouble loclist toggle", - "", - }, - r = { - "Trouble lsp_references toggle", - "", - }, - }, - b = { - t = { - "BlameToggle virtual", - "Toggle Virtual Blame", - }, - }, -}, { prefix = "" }) - -wk.register({ - ["/"] = { - "Telescope current_buffer_fuzzy_find", - "Search for a string in the current buffer", - }, +wk.add({ + { "bt", "BlameToggle virtual", desc = "Toggle Virtual Blame" }, + { "c", desc = "NerdCommenter" }, + { "f", desc = "Telescope - Finder" }, + { "fb", "Telescope buffers", desc = "Find Open Buffers" }, + { "ff", "Telescope find_files", desc = "Find File" }, + { "fg", "Telescope live_grep", desc = "Live Grep" }, + { "fh", "Telescope help_tags", desc = "Find Help" }, + { "fi", "Telescope builtin", desc = "Search all Telescope builtins" }, + { "ft", "TodoTelescope ", desc = "Open Todo in Telescope" }, + { "fu", "UrlView", desc = "Display and open URLs in current buffer" }, + { "n", desc = "Terminal" }, + { "nb", "lua _Lazygit_toggle()", desc = "Open Lazygit" }, + { "nj", "ToggleTerm", desc = "Open Terminal" }, + { "r", "lua vim.lsp.buf.rename()", desc = "Rename a token" }, + { "t1", "BufferGoto 1", desc = "Go to Buffer 1" }, + { "td", "BufferClose", desc = "Close Current Buffer" }, + { "x", desc = "Toggle Trouble" }, + { "xl", "Trouble loclist toggle", desc = "" }, + { "xq", "Trouble quickfix toggle", desc = "" }, + { "xr", "Trouble lsp_references toggle", desc = "" }, + { "xx", "Trouble diagnostics toggle", desc = "Open Trouble" }, })