Stick this in your ~/.vimrc and be happy:
" enables :Paste to just do what you want
command Paste execute 'set noai | insert | set ai'
Edit: on reflection, :r !cat
is a far better approach since it's short, semantic, and requires no custom vimrc. Use that instead!