Skip to content

Commit

Permalink
feat: add vscoqtop (#3334)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtomjhj authored Oct 2, 2024
1 parent aa615f6 commit c47f2ab
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lua/lspconfig/configs/vscoqtop.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'vscoqtop' },
filetypes = { 'coq' },
root_dir = function(fname)
return util.root_pattern '_CoqProject'(fname) or util.find_git_ancestor(fname)
end,
single_file_support = true,
},
docs = {
description = [[
https://github.com/coq-community/vscoq
]],
},
}

0 comments on commit c47f2ab

Please sign in to comment.