diff options
| author | Github Actions <actions@github> | 2019-12-17 07:03:17 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2019-12-17 07:03:17 +0000 |
| commit | 29edb620716055819d38f572f7a0d0a00303d5d0 (patch) | |
| tree | bc046986fdc399bbd33d6e9913dd00bfcbfe0ae6 | |
| parent | intelephense (PHP) #61 (diff) | |
| download | nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.tar nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.tar.gz nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.tar.bz2 nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.tar.lz nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.tar.xz nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.tar.zst nvim-lspconfig-29edb620716055819d38f572f7a0d0a00303d5d0.zip | |
[docgen] Update README.md
skip-checks: true
| -rw-r--r-- | README.md | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -205,6 +205,7 @@ that config. - [ghcide](#ghcide) - [gopls](#gopls) - [hie](#hie) +- [intelephense](#intelephense) - [leanls](#leanls) - [pyls](#pyls) - [pyls_ms](#pyls_ms) @@ -1087,6 +1088,29 @@ require'nvim_lsp'.hie.setup{} settings = {} ``` +## intelephense + +https://intelephense.com/ + +`intelephense` can be installed via `:LspInstall intelephense` or by yourself with `npm`: +```sh +npm install -g intelephense +``` + +Can be installed in Nvim with `:LspInstall intelephense` + +```lua +require'nvim_lsp'.intelephense.setup{} + + Default Values: + capabilities = default capabilities, with offsetEncoding utf-8 + cmd = { "intelephense", "--stdio" } + filetypes = { "php" } + log_level = 2 + on_init = function to handle changing offsetEncoding + root_dir = root_pattern("composer.json", ".git") +``` + ## leanls https://github.com/leanprover/lean-client-js/tree/master/lean-language-server |
