7
7

More than 5 years have passed since last update.

Vimでカッコ系言語のカッコを色分けして見やすくする

Posted at

RainbowParenthesesというのを見つけた。

以下は、schemeファイルを開いたときに有効化する設定。

.vimrc
Bundle 'kien/rainbow_parentheses.vim'

augroup MyAutoCmdFileType
  autocmd! MyAutoCmdFileType
  "...
  autocmd Filetype scheme :RainbowParenthesesToggle
augroup END

let g:rbpt_max = 7
let g:rbpt_loadcmd_toggle = 0

g:rbpt_maxの値は利用するカッコ色の数。

READMEでは16色くらいまで設定してたのでもっといけるんじゃないかな

7
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7