1

Update generated neovim config

This commit is contained in:
2024-09-22 20:41:25 +02:00
parent 1743764e48
commit aa1271c42c
1247 changed files with 26512 additions and 15067 deletions

View File

@ -5,7 +5,7 @@
Author: Alejandro "HiPhish" Sanchez
License: Apache-2.0
Version: 0.5.0
Version: 0.6.1
==============================================================================
@ -78,6 +78,17 @@ keys are recognized:
List of Tree-sitter languages for which to disabled rainbow delimiters.
Rainbow delimiters will be enabled for all other languages.
`condition`
Function which receives the current buffer number and returns a boolean; can
be used to dynamically decide whether to enable (true) or disable (false)
rainbow delimiters for a given buffer. You could for example use this
predicate to disable rainbow delimiters for large files.
Superceeded by the blacklist, but superceedes the whitelist. This means if
the file type is blacklisted the condtion is ignored, but if the file type
is whitelisted or not blacklisted the condition will be evaluated and
honoured.
`log`
Settings for logging information. This is a dictionary which contains
further settings. See |rb-delimiters-logging| for details.