Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lostneophyte/null-ls-embedded
Format embedded(injected) code using null-ls in NeoVim
https://github.com/lostneophyte/null-ls-embedded
formatting neovim neovim-plugin treesitter
Last synced: 3 days ago
JSON representation
Format embedded(injected) code using null-ls in NeoVim
- Host: GitHub
- URL: https://github.com/lostneophyte/null-ls-embedded
- Owner: LostNeophyte
- License: apache-2.0
- Created: 2022-12-02T12:19:42.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-06T06:39:25.000Z (over 1 year ago)
- Last Synced: 2024-11-06T22:17:39.532Z (11 days ago)
- Topics: formatting, neovim, neovim-plugin, treesitter
- Language: Lua
- Homepage:
- Size: 34.2 KB
- Stars: 33
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# null-ls-embedded
Plugin for formatting embedded(injected) code (e.g. `lua` in `markdown`)using [null-ls](https://github.com/jose-elias-alvarez/null-ls.nvim) in NeoVim.
Embedded languages are found using `injections.csm` treesitter queries from [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter),
so if the highlighting works, the formatting should as well.https://user-images.githubusercontent.com/110467150/205495468-f0f8b9d7-5730-48d6-beb1-ea60dabb0021.mp4
## installation
### Dependencies:
- [null-ls](https://github.com/jose-elias-alvarez/null-ls.nvim)
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)packer:
```lua
use({ "LostNeophyte/null-ls-embedded" })
```## Formatting
Add this plugin to the null-ls sources or use the builtin functions.
### As a null-ls source
To get the best results add it as the last one.
```lua
require("null-ls").setup({
sources = {
-- other sources
require("null-ls-embedded").nls_source,
},
})
```The null-ls source is enabled only for some filetypes by default, to configure them use this:
```lua
require("null-ls").setup({
sources = {
require("null-ls-embedded").nls_source.with({
-- default filetypes:
filetypes = { "markdown", "html", "vue", "lua" },
}),
},
})
```Format by calling `vim.lsp.buf.format`.
Range formatting is supported with this method (as long as the formatter will format the selected range).### By calling functions
- `require("null-ls-embedded").buf_format()` - format every code block in the buffer
- `require("null-ls-embedded").format_current()` - format the current code block## Configuration
```lua
local config = {
-- don't format these injected languages
ignore_langs = {
["*"] = { "comment" }, -- ignore `comment` in all languages
markdown = { "markdown_inline" }, -- ignore `markdown_inline` in `markdown`
},
timeout = 1000,
}
require("null-ls-embedded").config(config)
```### Additional queries
If you want the plugin to detect additional code blocks, add the treesitter queries to `injections.csm`.
## Credits
- **TJ DeVries**: [Magically format embedded languages in Neovim](https://www.youtube.com/watch?v=v3o9YaHBM4Q)
- **NeoVim**: [Code for getting treesitter injections](https://github.com/neovim/neovim/blob/86f9e29c86af9a7f6eb30a7d8ff529898a8b20ec/runtime/lua/vim/treesitter/languagetree.lua#L337)