diff options
| author | Github Actions <actions@github> | 2019-11-15 22:34:51 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2019-11-15 22:34:51 +0000 |
| commit | f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6 (patch) | |
| tree | 37d099eb5b6b89a2ddbaade7da2b279edbcaf89f | |
| parent | Add bash language server (#15) (diff) | |
| download | nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.tar nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.tar.gz nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.tar.bz2 nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.tar.lz nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.tar.xz nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.tar.zst nvim-lspconfig-f6fb07c1d0e6b528003c2a2f40ceb64efdf10cf6.zip | |
[docgen] Update README.md
skip-checks: true
| -rw-r--r-- | README.md | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -31,7 +31,6 @@ them are good references. ## Progress Implemented: -- [bash-language-server](https://github.com/mads-hartmann/bash-language-server) - [clangd](https://github.com/neovim/nvim-lsp#clangd) - [elmls](https://github.com/neovim/nvim-lsp#elmls) - [gopls](https://github.com/neovim/nvim-lsp#gopls) (has some errors) @@ -154,6 +153,22 @@ nvim_lsp.SERVER.setup({config}) ``` # LSP Implementations +## bash + +For install instruction visit: +https://github.com/mads-hartmann/bash-language-server#installation + +```lua +nvim_lsp.bash.setup({config}) +nvim_lsp#setup("bash", {config}) + + Default Values: + cmd = { "bash-language-server", "start" } + filetypes = { "sh" } + log_level = 2 + root_dir = vim's starting directory + settings = {} +``` ## clangd https://clang.llvm.org/extra/clangd/Installation.html |
