diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-05-29 10:39:42 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-05-29 10:39:42 -0600 |
commit | eb02361ae3f49a560ba35ba18c2f546ab4668c04 (patch) | |
tree | baf7b409461df53a0be0a07ba3b318a17d8b1ffa /plugin/vim-options.vim | |
parent | a85731419f76eb1290cdd49b5fa79a7027825872 (diff) |
Specify python for rainbow parentheses
Diffstat (limited to 'plugin/vim-options.vim')
-rw-r--r-- | plugin/vim-options.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index fe8fd40..525c6c4 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -221,10 +221,10 @@ endif " RainbowParentheses "----------------------------------------------------------------------------------------------------------------------- if !empty(glob($EditorDir.'plugged/rainbow_parentheses.vim/plugin/rainbow_parentheses.vim')) - au VimEnter * RainbowParenthesesToggle - au Syntax * RainbowParenthesesLoadRound - au Syntax * RainbowParenthesesLoadSquare - au Syntax * RainbowParenthesesLoadBraces + au VimEnter *.py RainbowParenthesesToggle + au Syntax *.py RainbowParenthesesLoadRound + au Syntax *.py RainbowParenthesesLoadSquare + au Syntax *.py RainbowParenthesesLoadBraces let g:rbpt_colorpairs = [ \ ['brown', 'RoyalBlue3'], \ ['darkblue', 'DarkOrchid3'], |