mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 04:50:05 +08:00
29 lines
711 B
Lua
29 lines
711 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'R', '--slave', '-e', 'languageserver::run()' },
|
||
|
filetypes = { 'r', 'rmd' },
|
||
|
root_dir = function(fname)
|
||
|
return util.find_git_ancestor(fname) or vim.loop.os_homedir()
|
||
|
end,
|
||
|
log_level = vim.lsp.protocol.MessageType.Warning,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
[languageserver](https://github.com/REditorSupport/languageserver) is an
|
||
|
implementation of the Microsoft's Language Server Protocol for the R
|
||
|
language.
|
||
|
|
||
|
It is released on CRAN and can be easily installed by
|
||
|
|
||
|
```R
|
||
|
install.packages("languageserver")
|
||
|
```
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[root_pattern(".git") or os_homedir]],
|
||
|
},
|
||
|
},
|
||
|
}
|