diff options
Diffstat (limited to 'lua/user/keymaps.lua')
-rw-r--r-- | lua/user/keymaps.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index e921740..9e59a68 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -96,13 +96,13 @@ keymap("n", "<leader>g", ":set termguicolors!<CR>:TSToggle highlight<CR>", opts) -- LSP options - see lsp/handlers.lua -- Telescope options -keymap("n", "<leader>t<CR>", ":Telescope <CR>", opts) -- ('t'elescope) -keymap("n", "<leader>tf", ":Telescope find_files<CR>", opts) -- ('f'ind_files) -keymap("n", "<leader>ts", ":Telescope live_grep<CR>", opts) -- ('s'tring) -keymap("n", "<leader>tb", ":Telescope buffers<CR>", opts) -- ('b'uffers) -keymap("n", "<leader>th", ":Telescope keymaps<CR>", opts) -- ('h'elp) ---keymap("n", "<leader>tld", ":Telescope lsp_document_diagnostics<CR>", opts) -- ('l'sp 'd'iagnostics) -keymap("n", "<leader>tt", ":Telescope treesitter<CR>", opts) -- ('t'reesitter) +keymap("n", "<leader>t<CR>", ":Telescope <CR>", opts) -- ('t'elescope) +keymap("n", "<leader>tf", ":Telescope find_files<CR>", opts) -- ('f'ind_files) +keymap("n", "<leader>ts", ":Telescope live_grep<CR>", opts) -- ('s'tring) +keymap("n", "<leader>tb", ":Telescope buffers<CR>", opts) -- ('b'uffers) +keymap("n", "<leader>td", ":Telescope diagnostics<CR>", opts) -- ('d'iagnostics) +keymap("n", "<leader>th", ":Telescope keymaps<CR>", opts) -- ('h'elp) +keymap("n", "<leader>tt", ":Telescope treesitter<CR>", opts) -- ('t'reesitter) -- Workspace Options keymap("n", "<leader>wsh", ":split<CR>", opts) --Horizontal split workspace ('s'plit 'h'orizontal) |