From 4a347a4ee1badb291a6526a5b485676188ae7fb1 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 28 Aug 2019 10:15:58 +0200 Subject: [PATCH] Do not highlight parentheses in todo files (broke timeslots) --- .vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vimrc b/.vimrc index 4107f59..599bf43 100644 --- a/.vimrc +++ b/.vimrc @@ -276,6 +276,12 @@ let g:indentLine_char = '┊' " Colour-match brackets Plugin 'luochen1990/rainbow' let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowToggle +" Do not use rainbow parentheses in these file types: +let g:rainbow_conf = { +\ 'separately': { +\ 'todo': 0 +\ }, +\} " Python virtualenv support "Plugin 'jmcantrell/vim-virtualenv'