diff options
author | Lee Marlow <[email protected]> | 2021-06-29 15:48:21 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-29 17:48:21 -0400 |
commit | dbad645f9075e54ce1864dba978e61c478b59e64 (patch) | |
tree | 7f110790d2ea6c8bcca17ce407d222cea9440d0c | |
parent | 38a0668e4d01e412d40e6d7281346d287aad9c52 (diff) |
Fix elixir spelling (#546)
-rw-r--r-- | init.lua | 2 | ||||
-rw-r--r-- | lua/default-config.lua | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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') diff --git a/lua/default-config.lua b/lua/default-config.lua index 11434be8..5328c7cd 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -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}, |