mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-21 09:43:44 +08:00
22 lines
505 B
Lua
22 lines
505 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'rune-languageserver' },
|
||
|
filetypes = { 'rune' },
|
||
|
root_dir = util.find_git_ancestor,
|
||
|
single_file_support = true,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://crates.io/crates/rune-languageserver
|
||
|
|
||
|
A language server for the [Rune](https://rune-rs.github.io/) Language,
|
||
|
an embeddable dynamic programming language for Rust
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[util.find_git_ancestor]],
|
||
|
},
|
||
|
},
|
||
|
}
|