mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 20:00:06 +08:00
34 lines
1.0 KiB
Lua
34 lines
1.0 KiB
Lua
local util = require 'lspconfig.util'
|
|
|
|
local bin_name = 'cairo-language-server'
|
|
local cmd = { bin_name, '/C', '--node-ipc' }
|
|
|
|
return {
|
|
default_config = {
|
|
init_options = { hostInfo = 'neovim' },
|
|
cmd = cmd,
|
|
filetypes = { 'cairo' },
|
|
root_dir = function(fname)
|
|
return util.root_pattern 'Scarb.toml'(fname)
|
|
or util.root_pattern('Scarb.toml', 'cairo_project.toml', '.git')(fname)
|
|
end,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
[Cairo Language Server](https://github.com/starkware-libs/cairo/tree/main/crates/cairo-lang-language-server)
|
|
|
|
First, install cairo following [this tutorial](https://medium.com/@elias.tazartes/ahead-of-the-curve-install-cairo-1-0-alpha-and-prepare-for-regenesis-85f4e3940e20)
|
|
|
|
Then enable cairo language server in your lua configuration.
|
|
```lua
|
|
require'lspconfig'.cairo_ls.setup{}
|
|
```
|
|
|
|
*cairo-language-server is still under active development, some features might not work yet !*
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git")]],
|
|
},
|
|
},
|
|
}
|