Unix

vim에 custom syntax highlight 넣기

ForceCore 2018. 2. 9. 19:57

TODO나 XXX는 색이 입혀지는데, 본인이나 남의 이니셜에 하이라이트가 들어가면 어떨까?

https://superuser.com/questions/110054/custom-vim-highlighting


highlight MyQuestion cterm=bold term=bold ctermbg=blue ctermfg=black

match MyQuestion /Question/

MyQuestion 이란 색상 scheme을 정의하고, match에서 어떤 것들을 하이라이트 입힐지 정의하면 된다.