Skip to content

rescriptls

https://github.com/rescript-lang/rescript-vscode

ReScript language server

By default, rescriptls doesn't have a cmd set. This is because nvim-lspconfig does not make assumptions about your path. You have to install the language server manually.

You can use the bundled language server inside the vim-rescript repo.

Clone the vim-rescript repo and point cmd to server.js inside server/out directory:

cmd = {'node', '<path_to_repo>/server/out/server.js', '--stdio'}

If you have vim-rescript installed you can also use that installation. for example if you're using packer.nvim you can set cmd to something like this:

cmd = {
  'node',
  '/home/username/.local/share/nvim/site/pack/packer/start/vim-rescript/server/out/server.js',
  '--stdio'
}

Another option is to use vscode extension release. Take a look at here for instructions.

Setup

require'lspconfig'.rescriptls.setup{}

Default values

cmd = {}
filetypes = { "rescript" }
root_dir = function(startpath)
    return M.search_ancestors(startpath, matcher)
  end
settings = {}
Back to top