From 931f799c1b79469ea613bd7cff504c5a9354b091 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Tue, 13 Oct 2020 15:47:19 -0300 Subject: [PATCH] Enable Rainbow Brackets globally --- nvim/init.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index c4d2c64..87e484d 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -38,6 +38,8 @@ set nowrap " instead of wrapping the text to the next line, scroll left a set laststatus=2 " Always display the status line set showtabline=2 " Always display the tab bar let mapleader=" " " Leader (special character for plugins) is Space + +let g:rainbow_active = 1 " This is part of the Rainbow brackets, enabling it globally. " }}} " Mappings {{{