Skip to content

Instantly share code, notes, and snippets.

@todashuta
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save todashuta/cc4cc96a5a225d4d1024 to your computer and use it in GitHub Desktop.

Select an option

Save todashuta/cc4cc96a5a225d4d1024 to your computer and use it in GitHub Desktop.
Silent matchparen
" 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