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

docs: Add lazy.nvim configration #4694 #4739

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
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.
hsanson marked this conversation as resolved.
Show resolved Hide resolved
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