Open only the first few lines of a file in Vim
I generally use a command like head
or tail
for seeing partial content of large files.
$head -10 <large file>
If you must do it from vim, use this:
:r !head -10 path/to/big.file
That would get the first 10 lines of big.file and insert them into the current buffer.