This commit is contained in:
2024-11-19 00:30:27 +03:00
parent 4bc4118cb8
commit 6a2c2ddc61
13 changed files with 165 additions and 156 deletions

View File

@ -1,8 +1,11 @@
local map = vim.keymap.set
-- neo-tree
map("n", "<leader>e", ":Neotree<CR>", { desc = "nvimtree focus window" })
-- telescope
map("n", "<leader>ff", "<cmd>Telescope live_grep<CR>", { desc = "telescope live grep" })
map("n", "<leader>gr", "<cmd>Telescope lsp_references<CR>", { desc = "telescope lsp references" })
map("n", "<leader>ff", ":Telescope live_grep<CR>", { desc = "telescope live grep" })
map("n", "<leader>gr", ":Telescope lsp_references<cr>", { desc = "telescope lsp references" })
map("n", "<tab>", ":BufferNext<CR>", { desc = "Next tab" })
map("n", "<S-tab>", ":BufferPrevious<CR>", { desc = "Previous tab" })