From 618607ffd66c4a9786b0f128204d0d9df2270029 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Tue, 3 Jan 2023 17:52:51 -0800 Subject: Enable telescope.nvim --- lua/user/keymaps.lua | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lua/user/keymaps.lua') diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index adb6470..fd9d2c2 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -93,6 +93,14 @@ keymap("n", "bl", ":JABSOpen", opts) --Open buffer switcher ('b'uf -- Toggle GUI colors keymap("n", "g", ":set termguicolors!:TSToggle highlight", opts) -- ('g'ui) +-- Telescope options +keymap("n", "tf", ":Telescope find_files", opts) -- ('f'ind_files) +keymap("n", "ts", ":Telescope live_grep", opts) -- ('s'tring) +keymap("n", "tb", ":Telescope buffers", opts) -- ('b'uffers) +keymap("n", "th", ":Telescope keymaps", opts) -- ('h'elp) +--keymap("n", "tld", ":Telescope lsp_document_diagnostics", opts) -- ('l'sp 'd'iagnostics) +keymap("n", "tt", ":Telescope treesitter", opts) -- ('t'reesitter) + -- Workspace Options keymap("n", "wsh", ":split", opts) --Horizontal split workspace ('s'plit 'h'orizontal) keymap("n", "wsv", ":vs", opts) --Vertical split workspace ('s'plit 'v'ertical) -- cgit