diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-05-07 12:49:19 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-05-07 12:49:19 +0000 |
| commit | cd576dd72d31ddffcbfa6d064c0dd697ca218758 (patch) | |
| tree | b1644079f0995ac6a1e2a877c6d6516cab1447b0 | |
| parent | docs: update generated annotations (diff) | |
| download | nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.tar nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.tar.gz nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.tar.bz2 nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.tar.lz nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.tar.xz nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.tar.zst nvim-lspconfig-cd576dd72d31ddffcbfa6d064c0dd697ca218758.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 34 | ||||
| -rw-r--r-- | doc/configs.txt | 26 |
2 files changed, 60 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 60f4c8f5..d5962eea 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -228,6 +228,7 @@ Nvim by running `:help lspconfig-all`. - [oxfmt](#oxfmt) - [oxlint](#oxlint) - [pact_ls](#pact_ls) +- [panache](#panache) - [pasls](#pasls) - [pbls](#pbls) - [perlls](#perlls) @@ -8867,6 +8868,39 @@ Default config: --- +## panache + +https://github.com/jolars/panache + +A language server, formatter, and linter for Markdown, Quarto, and R Markdown, +built in Rust with a lossless CST parser and support for external formatters +and linters on code blocks. + +Install via `cargo install panache`, from the [releases page](https://github.com/jolars/panache/releases), +or via your system package manager (`nixpkgs`, AUR, `pipx install panache-cli`, +`npm install -g @panache-cli/panache`). + +Snippet to enable the language server: +```lua +vim.lsp.enable('panache') +``` + +Default config: +- `cmd` : + ```lua + { "panache", "lsp" } + ``` +- `filetypes` : + ```lua + { "markdown", "quarto", "rmd" } + ``` +- `root_markers` : + ```lua + { ".panache.toml", "panache.toml", "_quarto.yml", "_bookdown.yml", ".git" } + ``` + +--- + ## pasls https://github.com/genericptr/pascal-language-server diff --git a/doc/configs.txt b/doc/configs.txt index 6c90d424..1f165a1a 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -6536,6 +6536,32 @@ Default config: < ------------------------------------------------------------------------------ +panache + +https://github.com/jolars/panache + +A language server, formatter, and linter for Markdown, Quarto, and R Markdown, +built in Rust with a lossless CST parser and support for external formatters +and linters on code blocks. + +Install via `cargo install panache`, from the [releases page](https://github.com/jolars/panache/releases), +or via your system package manager (`nixpkgs`, AUR, `pipx install panache-cli`, +`npm install -g @panache-cli/panache`). + +Snippet to enable the language server: >lua + vim.lsp.enable('panache') + + +Default config: +- cmd: >lua + { "panache", "lsp" } +- filetypes: >lua + { "markdown", "quarto", "rmd" } +- root_markers: >lua + { ".panache.toml", "panache.toml", "_quarto.yml", "_bookdown.yml", ".git" } +< + +------------------------------------------------------------------------------ pasls https://github.com/genericptr/pascal-language-server |
