Fix elixir spelling (#546)

This commit is contained in:
Lee Marlow 2021-06-29 15:48:21 -06:00 committed by GitHub
parent 38a0668e4d
commit dbad645f90
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ if O.lang.terraform.active then require('lsp.terraform-ls') end
if O.lang.tailwindcss.active then require('lsp.tailwindcss-ls') end
if O.lang.vim.active then require('lsp.vim-ls') end
if O.lang.yaml.active then require('lsp.yaml-ls') end
if O.lang.elixer.active then require('lsp.elixer-ls') end
if O.lang.elixir.active then require('lsp.elixir-ls') end
if O.lang.tsserver.active then
require('lsp.js-ts-ls')
require('lsp.angular-ls')

View file

@ -159,7 +159,7 @@ O = {
filetypes = {'rb', 'erb', 'rakefile'}
},
go = {active = false},
elixer = {active = false},
elixir = {active = false},
vim = {active = false},
yaml = {active = false},
terraform = {active = false},