add elixir support to nvim

This commit is contained in:
mokou 2021-06-01 12:56:38 +02:00
parent 99098efa3d
commit 896cc328e8
2 changed files with 6 additions and 0 deletions

View file

@ -22,3 +22,6 @@ paq 'nvim-treesitter/playground' -- ts playground
paq 'nvim-treesitter/nvim-treesitter-textobjects' -- ts textobjects
paq 'neovim/nvim-lspconfig' -- lsp client config
paq 'hrsh7th/nvim-compe' -- completion
-- misc
paq 'elixir-editors/vim-elixir' -- elixir support

View file

@ -1,2 +1,5 @@
require('lspconfig').tsserver.setup{}
require('lspconfig').rust_analyzer.setup{}
require('lspconfig').elixirls.setup {
cmd = {'/Users/lu/.local/bin/elixir-ls/language_server.sh'}
}