diff options
| author | Phil Thompson <phil@electricvisions.com> | 2021-02-20 18:48:23 +0000 |
|---|---|---|
| committer | Phil Thompson <phil@electricvisions.com> | 2021-02-20 18:52:03 +0000 |
| commit | f00581e00f7ffd90cb3b2a02e6db14733e6e913e (patch) | |
| tree | 7ca1ce3ab1daca32ed290627521986b33332be47 /lua | |
| parent | Merge pull request #743 from rudotriton/patch-1 (diff) | |
| download | nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.tar nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.tar.gz nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.tar.bz2 nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.tar.lz nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.tar.xz nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.tar.zst nvim-lspconfig-f00581e00f7ffd90cb3b2a02e6db14733e6e913e.zip | |
Fix typo in instructions
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/elixirls.lua | 2 | ||||
| -rw-r--r-- | lua/lspconfig/sumneko_lua.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lua/lspconfig/elixirls.lua b/lua/lspconfig/elixirls.lua index c7580e07..950608a4 100644 --- a/lua/lspconfig/elixirls.lua +++ b/lua/lspconfig/elixirls.lua @@ -23,7 +23,7 @@ unzip elixir-ls.zip -d /path/to/elixir-ls chmod +x /path/to/elixir-ls/language_server.sh ``` -**By default, elixir-ls doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of you unzipped elixir-ls. +**By default, elixir-ls doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of your unzipped elixir-ls. ```lua require'lspconfig'.elixirls.setup{ diff --git a/lua/lspconfig/sumneko_lua.lua b/lua/lspconfig/sumneko_lua.lua index c42689e2..60176c19 100644 --- a/lua/lspconfig/sumneko_lua.lua +++ b/lua/lspconfig/sumneko_lua.lua @@ -20,7 +20,7 @@ Lua language server. `lua-language-server` can be installed by following the instructions [here](https://github.com/sumneko/lua-language-server/wiki/Build-and-Run-(Standalone)). -**By default, lua-language-server doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of you unzipped and compiled lua-language-server. +**By default, lua-language-server doesn't have a `cmd` set.** This is because nvim-lspconfig does not make assumptions about your path. You must add the following to your init.vim or init.lua to set `cmd` to the absolute path ($HOME and ~ are not expanded) of your unzipped and compiled lua-language-server. ```lua local system_name |
