Open a File at Specified Line Number with Vim

You can provide a line number as an argument when opening a file in Vim and Vim will open the file and put the cursor at that line number.

vim +<line_number> <filename>

With a real example, the above becomes:

vim +82 playbook.yml