Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ALE instructions to README #64

Merged
merged 1 commit into from
Jul 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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