Extra sources for nvimtools/none-ls.nvim.
This should be used as a dependency of none-ls.nvim.
{
"nvimtools/none-ls.nvim",
dependencies = {
"nvimtools/none-ls-extras.nvim",
},
}
:Rocks install none-ls-extras.nvim scm
Installing this plugin with rocks.nvim will automatically install none-ls.nvim if not already installed.
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.
You can search for sources via the
none-ls-sources
topic.