21 lines
426 B
Lua
21 lines
426 B
Lua
return {
|
|
-- You can also add new plugins here as well:
|
|
-- Add plugins, the lazy syntax
|
|
-- "andweeb/presence.nvim",
|
|
-- {
|
|
-- "ray-x/lsp_signature.nvim",
|
|
-- event = "BufRead",
|
|
-- config = function()
|
|
-- require("lsp_signature").setup()
|
|
-- end,
|
|
-- },
|
|
{
|
|
"github/copilot.vim",
|
|
cmd = "Copilot",
|
|
event = "BufRead",
|
|
init = function()
|
|
vim.g.copilot_no_tab_map = true
|
|
end
|
|
}
|
|
}
|