Here's how you do this automatically after keeping your cursor still for a short time:
:au CursorHold * :exec 'match Search /\V\<' . expand('<cword>') . '\>/'
By default, this will highlight the word under the cursor after 4s of inactivity. Use :set updatetime=100
to make it happen after 0.1s instead.