From b59796dd11edfe414f346aa14964d1e4660606af Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 20 Feb 2022 23:11:52 -0600 Subject: [PATCH] feat(todo): Show todo in telescope (tT) --- .config/nvim/lua/plugins/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/mappings.lua b/.config/nvim/lua/plugins/mappings.lua index 6948ad40..3be7e942 100755 --- a/.config/nvim/lua/plugins/mappings.lua +++ b/.config/nvim/lua/plugins/mappings.lua @@ -16,7 +16,7 @@ map("n", "tc", ":Telescope neoclip default") map("n", "tr", ":Telescope registers") map("n", "tt", ":Telescope file_browser") map("n", "ts", ":Telescope spell_suggest") - +map("n", "tT", ":TodoTelescope") -- Lsp Mappings map("n", "lD", ":lua vim.lsp.buf.declaration()")