From 40aaf1217222cd85fcf1749ff013b6e5f9d4827b Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Sat, 21 Jul 2018 18:33:32 -0700 Subject: [PATCH] Add ALE instructions to README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index b18ad2441..b4e79a4e4 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,15 @@ if executable('bash-language-server') endif ``` +For Vim 8 or NeoVim using [w0rp/ale][vim-ale] add the following +configuration to your `.vimrc`: + +```vim +let g:ale_linters = { + \ 'sh': ['language_server'], + \ } +``` + #### Neovim Install the plugin [autozimu/LanguageClient-neovim][languageclient-neovim] and add the following configuration to @@ -76,3 +85,4 @@ Please see [docs/development-guide][dev-guide] for more information. [explainshell]: https://explainshell.com/ [languageclient-neovim]: https://github.com/autozimu/LanguageClient-neovim [vim-lsp]: https://github.com/prabirshrestha/vim-lsp +[vim-ale]: https://github.com/w0rp/ale