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
Raw Normal View History

local lsp = require('lspconfig')
2020-11-13 14:38:05 -06:00
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' }
2020-11-13 14:38:05 -06:00
}