1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 00:05:10 +01:00

Do not highlight parentheses in todo files (broke timeslots)

This commit is contained in:
2019-08-28 10:15:58 +02:00
parent 534e792c0f
commit 4a347a4ee1

6
.vimrc
View File

@@ -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'