Skip to content

Commit

Permalink
docs: fix typo, and add lazy.nvim configuration example
Browse files Browse the repository at this point in the history
  • Loading branch information
ElCapitanSponge committed Mar 12, 2024
1 parent 1f7057f commit 8cae478
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,17 @@ git clone https://github.com/dense-analysis/ale ~/.vim/bundle/ale
#### [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
'desnse-analysis/ale',
'dense-analysis/ale',
config = function()
-- Configuration goes here.
local g = vim.g

g.ale_ruby_rubocop_auto_correct_all = 1

g.ale_linters = {
ruby = {'rubocop', 'ruby'},
lua = {'lua_language_server'}
}
end
}
```
Expand Down

0 comments on commit 8cae478

Please sign in to comment.