mirror of https://github.com/qpixel/dotfiles.git
26 lines
507 B
Lua
26 lines
507 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,
|
|
-- },
|
|
{
|
|
"zbirenbaum/copilot.lua",
|
|
cmd = "Copilot",
|
|
event = "InsertEnter",
|
|
config = function()
|
|
require("copilot").setup({})
|
|
end,
|
|
},
|
|
{
|
|
"andweeb/presence.nvim",
|
|
config = true,
|
|
lazy = false,
|
|
},
|
|
}
|