dotfiles/nvim/.config/nvim/lua/plugins/languages/coq.lua

26 lines
672 B
Lua
Raw Normal View History

2024-10-06 16:40:37 -07:00
return {
{
'whonore/Coqtail',
2024-10-08 21:48:08 -07:00
event = { 'BufReadPre *.v', 'BufNewFile *.v' },
2024-10-06 16:40:37 -07:00
init = function()
vim.g.loaded_coqtail = 1
vim.g['coqtail#supported'] = 0
end
},
{
2025-01-02 08:34:36 -08:00
'tomtomjhj/vscoq.nvim',
event = { 'BufReadPre *.v', 'BufNewFile *.v'},
2025-03-17 23:23:47 -07:00
filetypes = 'coq',
2025-01-02 08:34:36 -08:00
opts = true,
2025-03-17 23:23:47 -07:00
dependencies = { 'whonore/Coqtail', 'neovim/nvim-lspconfig' },
2024-10-06 16:40:37 -07:00
}
2025-01-02 08:34:36 -08:00
-- {
-- 'tomtomjhj/coq-lsp.nvim',
-- event = { 'BufReadPre *.v', 'BufNewFile *.v' },
-- opts = {
-- autostart = true,
-- },
-- dependencies = { 'whonore/Coqtail' }
-- }
2024-10-06 16:40:37 -07:00
}