This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/apps/neovim/lsp.lua

10 lines
290 B
Lua

local lsp = require('lspconfig')
local homedir = os.getenv('HOME')
local ossdir = homedir..'/../code/open-source'
lsp.elixirls.setup{
-- TODO: git clone and compile if needed
-- preferably in a background thread with messages
cmd = { ossdir..'/elixir-ls/release/language_server.sh' }
}