Extra sources for nvimtools/none-ls.nvim.
📦 Installation
This should be used as a dependency of none-ls.nvim.
lazy.nvim
{
"nvimtools/none-ls.nvim",
dependencies = {
"nvimtools/none-ls-extras.nvim",
},
}rocks.nvim
:Rocks install none-ls-extras.nvim scm
Installing this plugin with rocks.nvim will automatically install none-ls.nvim if not already installed.
Setup
Follow the steps in null-ls setup section.
local null_ls = require("null-ls") null_ls.setup { sources = { require("none-ls.diagnostics.cpplint"), require("none-ls.formatting.jq"), require("none-ls.code_actions.eslint"), ... } }
Use require("none-ls.METHOD.TOOL") instead of null_ls.builtins.METHOD.TOOL
to use these extras.
Related projects
You can search for sources via the
none-ls-sources topic.