-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathcairo_ls.lua
33 lines (28 loc) · 1.04 KB
/
cairo_ls.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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")]],
},
},
}