Last active
August 29, 2015 14:05
-
-
Save todashuta/cc4cc96a5a225d4d1024 to your computer and use it in GitHub Desktop.
Silent matchparen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " matchparen の対応括弧強調のハイライトを下線だけにしておとなしくする | |
| " GVim では問題ないが端末では対応していない場合があるかも | |
| augroup silent-matchparen | |
| autocmd! | |
| autocmd VimEnter,WinEnter,ColorScheme * | |
| \ highlight MatchParen | |
| \ guifg=NONE guibg=NONE ctermfg=NONE ctermbg=NONE | |
| \ term=underline cterm=underline gui=underline | |
| augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment