From 4c3d8fdf186fbdefb8bb41aef9d55e55b2fa1598 Mon Sep 17 00:00:00 2001 From: Max Bucknell Date: Fri, 25 Oct 2024 21:48:23 +1100 Subject: [PATCH] Add Elixir support --- vim/vimrc.symlink | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index 2f59eaa..9bd2aee 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -25,6 +25,8 @@ Plug 'quarto-dev/quarto-vim' Plug 'HerringtonDarkholme/yats.vim' +Plug 'elixir-editors/vim-elixir' + call plug#end() " Language config @@ -235,6 +237,10 @@ augroup Lsp \ filetype: ['javascript', 'typescript', 'javascriptreact', 'typescriptreact'], \ path: '/opt/homebrew/bin/typescript-language-server', \ args: ['--stdio'] + \ }, #{ + \ name: 'elixir', + \ filetype: ['elixir'], + \ path: '/opt/homebrew/bin/elixir-ls' \ }] autocmd User LspSetup call LspAddServer(lspServers)