I broke up with neovim....vim is my best friend now
This commit is contained in:
51
dot_vim/plugged/rainbow_parentheses.vim/readme.md
Normal file
51
dot_vim/plugged/rainbow_parentheses.vim/readme.md
Normal file
@@ -0,0 +1,51 @@
|
||||
# Better Rainbow Parentheses
|
||||
|
||||
### Options:
|
||||
|
||||
```vim
|
||||
let g:rbpt_colorpairs = [
|
||||
\ ['brown', 'RoyalBlue3'],
|
||||
\ ['Darkblue', 'SeaGreen3'],
|
||||
\ ['darkgray', 'DarkOrchid3'],
|
||||
\ ['darkgreen', 'firebrick3'],
|
||||
\ ['darkcyan', 'RoyalBlue3'],
|
||||
\ ['darkred', 'SeaGreen3'],
|
||||
\ ['darkmagenta', 'DarkOrchid3'],
|
||||
\ ['brown', 'firebrick3'],
|
||||
\ ['gray', 'RoyalBlue3'],
|
||||
\ ['black', 'SeaGreen3'],
|
||||
\ ['darkmagenta', 'DarkOrchid3'],
|
||||
\ ['Darkblue', 'firebrick3'],
|
||||
\ ['darkgreen', 'RoyalBlue3'],
|
||||
\ ['darkcyan', 'SeaGreen3'],
|
||||
\ ['darkred', 'DarkOrchid3'],
|
||||
\ ['red', 'firebrick3'],
|
||||
\ ]
|
||||
```
|
||||
|
||||
```vim
|
||||
let g:rbpt_max = 16
|
||||
```
|
||||
|
||||
```vim
|
||||
let g:rbpt_loadcmd_toggle = 0
|
||||
```
|
||||
|
||||
### Commands:
|
||||
|
||||
```vim
|
||||
:RainbowParenthesesToggle " Toggle it on/off
|
||||
:RainbowParenthesesLoadRound " (), the default when toggling
|
||||
:RainbowParenthesesLoadSquare " []
|
||||
:RainbowParenthesesLoadBraces " {}
|
||||
:RainbowParenthesesLoadChevrons " <>
|
||||
```
|
||||
|
||||
### Always On:
|
||||
|
||||
```vim
|
||||
au VimEnter * RainbowParenthesesToggle
|
||||
au Syntax * RainbowParenthesesLoadRound
|
||||
au Syntax * RainbowParenthesesLoadSquare
|
||||
au Syntax * RainbowParenthesesLoadBraces
|
||||
```
|
||||
Reference in New Issue
Block a user