1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-02 06:19:25 +00:00

[neovim] Add copilot

This commit is contained in:
2024-02-12 20:46:40 +01:00
parent 64cf03dcac
commit d1c002183f
10 changed files with 72 additions and 24 deletions

View File

@ -122,7 +122,7 @@ keymap(
keymap(
"n",
"<leader>lr",
"<cmd>Lspsaga rename<cr>",
"<cmd>Lspsaga rename mode=n<cr>",
vim.tbl_extend("force", opts, { desc = "Open a dialog to rename a code element" })
)
keymap(
@ -132,7 +132,7 @@ keymap(
vim.tbl_extend("force", opts, { desc = "Peek the definition of the directive under the cursor" })
)
keymap(
{"n", "v"},
{ "n", "v" },
"<leader>lf",
"<cmd>lua vim.lsp.buf.format{ async=true }<cr>",
vim.tbl_extend("force", opts, { desc = "Format the current buffer or selection" })
@ -152,6 +152,20 @@ keymap(
vim.tbl_extend("force", opts, { desc = "Run tests on the current file" })
)
-- Copilot
keymap(
"n",
"<leader>coe",
"<cmd>CopilotChatExplain<cr>",
vim.tbl_extend("force", opts, { desc = "CopilotChat - Explain code" })
)
keymap(
"n",
"<leader>cot",
"<cmd>CopilotChatTests<cr>",
vim.tbl_extend("force", opts, { desc = "CopilotChat - Generate tests" })
)
-- Better paste
keymap("v", "p", "P", vim.tbl_extend("force", opts, { desc = "Paste" }))

View File

@ -168,10 +168,10 @@ require("lazy").setup({
"hrsh7th/cmp-nvim-lsp",
},
},
{
"Exafunction/codeium.nvim",
event = "BufEnter",
},
-- {
-- "Exafunction/codeium.nvim",
-- event = "BufEnter",
-- },
-- Snippets
{ "L3MON4D3/LuaSnip", version = "v2.*", event = "InsertEnter" },
@ -283,6 +283,24 @@ require("lazy").setup({
ft = { "markdown" },
},
-- Copilot
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
},
{ "zbirenbaum/copilot-cmp" },
{ "AndreM222/copilot-lualine" },
{
"copilotc-nvim/copilotchat.nvim",
opts = {
show_help = "yes",
debug = false,
disable_extra_info = "yes",
},
event = "VeryLazy",
},
-- Folding
{
"kevinhwang91/nvim-ufo",