mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 19:50:04 +08:00
20 lines
507 B
Lua
20 lines
507 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'clojure-lsp' },
|
|
filetypes = { 'clojure', 'edn' },
|
|
root_dir = util.root_pattern('project.clj', 'deps.edn', 'build.boot', 'shadow-cljs.edn', '.git', 'bb.edn'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/clojure-lsp/clojure-lsp
|
|
|
|
Clojure Language Server
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("project.clj", "deps.edn", "build.boot", "shadow-cljs.edn", ".git", "bb.edn")]],
|
|
},
|
|
},
|
|
}
|