1
0
Fork 0
No description
  • Lua 88%
  • Scheme 5.8%
  • Janet 0.4%
  • OCaml 0.3%
  • SystemVerilog 0.3%
  • Other 3.3%
Find a file
Daniel Baumann d49b1fa2b7
Releasing fastforward version 0.12.0+ds-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-04-14 12:41:13 +02:00
.github/ISSUE_TEMPLATE Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
.gitlab/issue_templates Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
.luals/meta Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
autoload Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
debian Releasing fastforward version 0.12.0+ds-1~ffwd13+u1. 2026-04-14 12:41:13 +02:00
doc Merging upstream version 0.12.0+ds. 2026-04-14 12:41:02 +02:00
LICENSES Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
lua Merging upstream version 0.12.0+ds. 2026-04-14 12:41:02 +02:00
plugin Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
queries Merging upstream version 0.12.0+ds. 2026-04-14 12:41:02 +02:00
test Merging upstream version 0.12.0+ds. 2026-04-14 12:41:02 +02:00
.busted Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
.editorconfig Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
.gitignore Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
.gitmodules Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
.luarc.json Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
.nvimrc Merging upstream version 0.11.0+ds. 2026-03-28 09:45:19 +01:00
CHANGELOG.rst Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
CONTRIBUTING.rst Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
HACKING.rst Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
LICENSE Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
makefile Adding upstream version 0.10.0+ds. 2026-02-13 06:03:51 +01:00
README.rst Merging upstream version 0.12.0+ds. 2026-04-14 12:41:02 +02:00
TODO.rst Merging upstream version 0.12.0+ds. 2026-04-14 12:41:02 +02:00

.. default-role:: code


###############################
 Rainbow delimiters for Neovim
###############################

This Neovim plugin provides alternating syntax highlighting (“rainbow
parentheses”) for Neovim, powered by `Tree-sitter`_.  The goal is to have a
hackable plugin which allows for different configuration of queries and
strategies, both globally and per file type.  Users can override and extend the
built-in defaults through their own configuration.

This is a fork of `nvim-ts-rainbow2`_, which was implemented as a module for
`nvim-treessiter`_.  However, since nvim-treesitter has deprecated the module
system I had to create this standalone plugin.


Installation and setup
######################

Installation
============

Install it like any other Neovim plugin; you do not need the Git submodules of
this repository.  They are just used for development and won't cause any harm,
they will just bloat your setup.

You will need a Tree-sitter parser for each language you want to use rainbow
delimiters with.

Setup
=====

No configuration is needed to get started, this plugin has reasonable defaults
which you can override.  Configuration is done by setting entries in the Vim
script dictionary `g:rainbow_delimiters`.  Here is an example configuration:

.. code:: vim

   let g:rainbow_delimiters = {
       \ 'strategy': {
           \ '': 'rainbow-delimiters.strategy.global',
           \ 'vim': 'rainbow-delimiters.strategy.local'
       \ },
       \ 'query': {
           \ '': 'rainbow-delimiters',
           \ 'lua': 'rainbow-blocks',
       \ },
       \ 'priority': {
           \ '': 110,
           \ 'lua': 210,
       \ },
       \ 'highlight': [
           \ 'RainbowDelimiterRed',
           \ 'RainbowDelimiterYellow',
           \ 'RainbowDelimiterBlue',
           \ 'RainbowDelimiterOrange',
           \ 'RainbowDelimiterGreen',
           \ 'RainbowDelimiterViolet',
           \ 'RainbowDelimiterCyan',
       \ ],
   \ }

The equivalent code in Lua:

.. code:: lua

   ---@type rainbow_delimiters.config
   vim.g.rainbow_delimiters = {
       strategy = {
           [''] = 'rainbow-delimiters.strategy.global',
           vim = 'rainbow-delimiters.strategy.local',
       },
       query = {
           [''] = 'rainbow-delimiters',
           lua = 'rainbow-blocks',
       },
       priority = {
           [''] = 110,
           lua = 210,
       },
       highlight = {
           'RainbowDelimiterRed',
           'RainbowDelimiterYellow',
           'RainbowDelimiterBlue',
           'RainbowDelimiterOrange',
           'RainbowDelimiterGreen',
           'RainbowDelimiterViolet',
           'RainbowDelimiterCyan',
       },
   }

Please refer to the `manual`_ for more details.  For those who prefer a `setup`
function there is the module `rainbow-delimiters.setup` that accepts all the
same parameters as `g:rainbow-delimiters`.

.. code:: lua

   require('rainbow-delimiters.setup').setup {
       strategy = {
           -- ...
       },
       query = {
           -- ...
       },
       highlight = {
           -- ...
       },
   }


Help wanted
###########

There are only so many languages which I understand to the point that I can
write queries for them.  If you want support for a new language please consider
contributing code.  See the CONTRIBUTING_ for details.

Contributing
============

TL;DR: Run these steps first if you want to run tests:

.. code:: sh

   ln -s .submodules .gitmodules
   git submodule init
   git submodule updated --checkout

To provide some context, there are dependencies needed to run tests.  These are
included as Git submodules.  The problem is that a number of package managers
will download submodules by default, which means that users will end up with a
bunch of stuff installed that they don't want.  There is no way to tell Git to
use a different file, so we have to create a symbolic link instead if we
actually do want to download these submodules.


Status of the plugin
####################

Tree-sitter support in Neovim is still experimental.  This plugin and its API
should be considered stable insofar as breaking changes will only happen if
changes to Neovim necessitates them.

Neovim version compatibility policy
====================================

As long as Tree-sitter support in Neovim remains experimental the Neovim
version compatibility will be a sliding window encompassing the following
versions in order of priority:

1) The currently released version
2) The upcoming version
3) The previously released version

If any for these are in conflict with each other the higher-priority version
will be preferred.  This should cover the needs of most Neovim users.  The
plugin may still be compatible with even older releases if convenient, but it
is a guarantee.

Intentionally breaking backwards compatibility necessitates a new release of
the plugin.


License
#######

Licensed under the Apache-2.0 license. Please see the `LICENSE`_ file for
details.


Migrating from nvim-ts-rainbow2
###############################

Rainbow-Delimiters uses different settings than nvim-ts-rainbow2, but
converting the configuration is straight-forward.  The biggest change is where
the settings are stored.

- Settings are stored in the global variable `g:rainbow-delimiters`, which has
  the same keys as the old settings
- The default strategy and query have index `''` (empty string) instead of `1`
- Default highlight groups have the prefix `RainbowDelimiter` instead of
  `TSRainbow`, e.g. `RainbowDelimiterRed` instead of `TSRainbowRed`
- The default query is now called `rainbow-delimiters` instead of
  `rainbow-parens`
- The public Lua module is called `rainbow-delimiters` instead of `ts-rainbow`

The name of the default query is now `rainbow-delimiters` because for some
languages like HTML the notion of "parentheses" does not make any sense.  In
HTML the only meaningful delimiter is the tag.  Hence the generic notion of a
"delimiter".


Attribution
###########

This is a fork of a previous Neovim plugin, the original repository is
available under https://sr.ht/~p00f/nvim-ts-rainbow/.

Attributions from the original author
=====================================

Huge thanks to @vigoux, @theHamsta, @sogaiu, @bfredl and @sunjon and
@steelsojka for all their help


.. _Tree-sitter: https://tree-sitter.github.io/tree-sitter/
.. _nvim-treesitter: https://github.com/nvim-treesitter/nvim-treesitter
.. _CONTRIBUTING: CONTRIBUTING.rst
.. _LICENSE: LICENSE
.. _manual: doc/rainbow-delimiters.txt
.. _neovim/neovim#17099: https://github.com/neovim/neovim/pull/17099
.. _nvim-ts-rainbow2: https://gitlab.com/HiPhish/nvim-ts-rainbow2
.. _nvim-treessiter: https://github.com/nvim-treesitter/nvim-treesitter


Screenshots
###########

Bash
====

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/514ed2a2-68a4-427e-aef6-7ac3a02a2ba0
   :alt: Screenshot of a Bash script with alternating coloured delimiters

C
=

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/45f8e727-d507-43df-b112-a269e7262533
   :alt: Screenshot of a C program with alternating coloured delimiters

Common Lisp
===========

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/5e7e15bb-a4e3-41e5-b3fc-3c4150ffd252
   :alt: Screenshot of a Common Lisp program with alternating coloured delimiters

HTML
====

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/371d310c-d5a7-490d-bb55-d3fe4bd8b1a8
   :alt: Screenshot of an HTML document with alternating coloured delimiters

Java
====

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/bb372051-ec5f-4c0b-a9b9-3cd37edafa4f
   :alt: Screenshot of a Java program with alternating coloured delimiters

LaTeX
=====

Using the `rainbow-blocks` query to highlight the entire `\begin` and `\end`
instructions.

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/0176cc0d-b729-417e-8f85-c31da70d49f5
   :alt: Screenshot of a LaTeX document with alternating coloured delimiters

Lua
===

Using the `rainbow-blocks` query to highlight the entire keywords like
`function`, `if`, `else` and `end`.

.. image:: https://github.com/HiPhish/rainbow-delimiters.nvim/assets/4954650/a915f7e0-b1c9-4af2-ae1d-f2f48aa325e5
   :alt: Screenshot of a Lua script with alternating coloured delimiters