Reshape cmp box

This commit is contained in:
Alessandro
2024-09-24 10:03:45 +02:00
parent 44ae4fbc45
commit 9f4b4c111d
6 changed files with 47 additions and 24 deletions

View File

@@ -43,8 +43,8 @@ map("n", "gi", vim.lsp.buf.implementation, { desc = "Go to implementation" })
map("n", "gr", vim.lsp.buf.references, { desc = "Show references" })
map("n", "<leader>ld", vim.diagnostic.setloclist, { desc = "LSP Diagnostic loclist" })
map("n", "<leader>lr", function()
require "nvchad.lsp.renamer"()
end, {desc = "NvRenamer"})
require "nvchad.lsp.renamer"()
end, { desc = "NvRenamer" })
-- Git
map("n", "<leader>gm", "<cmd>Telescope git_commits<CR>", { desc = "telescope git commits" })
@@ -81,4 +81,3 @@ cmp.setup {
["<Up>"] = cmp.mapping(cmp.mapping.select_prev_item { behavior = cmp.SelectBehavior.Select }, { "i" }),
},
}