Skip to content

Instantly share code, notes, and snippets.

@dtinth
Created July 7, 2012 05:19
Show Gist options
  • Save dtinth/3064863 to your computer and use it in GitHub Desktop.
Save dtinth/3064863 to your computer and use it in GitHub Desktop.
Rainbow Comments
" rainbow comments!!
let s:currentcolor = 9
function! ChangeColor()
let s:currentcolor += 1
if s:currentcolor >= 15
let s:currentcolor = 9
end
exe "hi Comment ctermfg=" . s:currentcolor
endfunction
autocmd InsertEnter * call ChangeColor()
autocmd InsertCharPre * call ChangeColor()
autocmd CursorMoved * call ChangeColor()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment