Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nvimtools/none-ls-extras.nvim
Extra sources for none-ls.nvim. Not extensively tested, may be prone to break.
https://github.com/nvimtools/none-ls-extras.nvim
neovim none-ls-sources null-ls-sources nvim
Last synced: 3 days ago
JSON representation
Extra sources for none-ls.nvim. Not extensively tested, may be prone to break.
- Host: GitHub
- URL: https://github.com/nvimtools/none-ls-extras.nvim
- Owner: nvimtools
- License: unlicense
- Created: 2024-02-25T06:14:56.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T12:57:37.000Z (26 days ago)
- Last Synced: 2024-10-21T20:14:32.748Z (26 days ago)
- Topics: neovim, none-ls-sources, null-ls-sources, nvim
- Language: Lua
- Homepage:
- Size: 41 KB
- Stars: 89
- Watchers: 5
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# none-ls-extras.nvim
Extra sources for
[nvimtools/none-ls.nvim](https://github.com/nvimtools/none-ls.nvim).## 📦 Installation
This should be used as a dependency of **none-ls.nvim**.
### [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
"nvimtools/none-ls.nvim",
dependencies = {
"nvimtools/none-ls-extras.nvim",
},
}
```### [rocks.nvim](https://github.com/nvim-neorocks/rocks.nvim)
```vim
: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](https://github.com/nvimtools/none-ls.nvim?tab=readme-ov-file#setup)
section.```lua
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](https://github.com/topics/none-ls-sources).- [none-ls.nvim](https://github.com/nvimtools/none-ls.nvim)
- [none-ls-php.nvim](https://github.com/gbprod/none-ls-php.nvim)
- [none-ls-shellcheck.nvim](https://github.com/gbprod/none-ls-shellcheck.nvim)
- [none-ls-luacheck.nvim](https://github.com/gbprod/none-ls-luacheck.nvim)
- [none-ls-psalm.nvim](https://github.com/gbprod/none-ls-psalm.nvim)
- [none-ls-ecs.nvim](https://github.com/gbprod/none-ls-ecs.nvim)