Skip to content

Commit

Permalink
docs: Add lazy.nvim configration dense-analysis#4694 (dense-analysis#…
Browse files Browse the repository at this point in the history
…4739)

* docs: Add lazy.nvim configration dense-analysis#4694

* docs: fix typo, and add lazy.nvim configuration example
  • Loading branch information
ElCapitanSponge authored Mar 12, 2024
1 parent 8f9197b commit 831f739
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,24 @@ Plugin 'dense-analysis/ale'
git clone https://github.com/dense-analysis/ale ~/.vim/bundle/ale
```

#### [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
'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
}
```

## Contributing

If you would like to see support for more languages and tools, please
Expand Down

0 comments on commit 831f739

Please sign in to comment.