diff options
author | Christian Chiarulli <[email protected]> | 2021-03-14 15:10:28 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-14 15:10:28 -0400 |
commit | 0dc3c5030b778d5256cad5d9529e9ecf7fbfb233 (patch) | |
tree | 420e44f62d95d138eec36baa4d1bd5b6c9390ae6 /plug-config/rainbow.vim | |
parent | d002b0419a8621c5575c14119d0b8d9c4a7a44a0 (diff) |
The Lua Journey Begins...
Diffstat (limited to 'plug-config/rainbow.vim')
-rw-r--r-- | plug-config/rainbow.vim | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/plug-config/rainbow.vim b/plug-config/rainbow.vim deleted file mode 100644 index 0900b5ab..00000000 --- a/plug-config/rainbow.vim +++ /dev/null @@ -1,39 +0,0 @@ -let g:rainbow#pairs = [['(', ')'], ['[', ']'], ['{', '}']] -let g:rainbow_conf = {'guis': ['bold']} -let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowToggle - -" \ 'guifgs': ['royalblue3', 'darkorange3', 'seagreen3', 'firebrick'], -let g:rainbow_conf = { -\ 'guifgs': ['#858580', '#8FBCBB', '#D08770', '#A3BE8C', '#EBCB8B', '#B48EAD', '#80a880', '#887070'], -\ 'ctermfgs': ['lightblue', 'lightyellow', 'lightcyan', 'lightmagenta'], -\ 'guis': [''], -\ 'cterms': [''], -\ 'operators': '_,_', -\ 'parentheses': ['start=/(/ end=/)/ fold', 'start=/\[/ end=/\]/ fold', 'start=/{/ end=/}/ fold'], -\ 'separately': { -\ '*': {}, -\ 'markdown': { -\ 'parentheses_options': 'containedin=markdownCode contained', -\ }, -\ 'lisp': { -\ 'guifgs': ['#858580', '#8FBCBB', '#D08770', '#A3BE8C', '#EBCB8B', '#B48EAD', '#80a880', '#887070'], -\ }, -\ 'jsx': { -\ 'guifgs': ['#858580', '#8FBCBB', '#D08770', '#A3BE8C', '#EBCB8B', '#B48EAD', '#80a880', '#887070'], -\ }, -\ 'haskell': { -\ 'parentheses': ['start=/(/ end=/)/ fold', 'start=/\[/ end=/\]/ fold', 'start=/\v\{\ze[^-]/ end=/}/ fold'], -\ }, -\ 'vim': { -\ 'parentheses_options': 'containedin=vimFuncBody', -\ }, -\ 'perl': { -\ 'syn_name_prefix': 'perlBlockFoldRainbow', -\ }, -\ 'stylus': { -\ 'parentheses': ['start=/{/ end=/}/ fold contains=@colorableGroup'], -\ }, -\ 'css': 0, -\ } -\} - |