This commit is contained in:
ldraney 2024-03-24 13:36:25 -06:00
parent dbba54cfd8
commit 6380f390ea
26 changed files with 2704 additions and 0 deletions

15
nvim-old/lua/plugins.lua Normal file
View file

@ -0,0 +1,15 @@
use {
"ms-jpq/coq_nvim",
branch = "coq",
event = "InsertEnter",
opt = true,
run = ":COQdeps",
config = function()
require("config.coq").setup()
end,
requires = {
{ "ms-jpq/coq.artifacts", branch = "artifacts" },
{ "ms-jpq/coq.thirdparty", branch = "3p", module = "coq_3p" },
},
disable = false,
}