How to see vimrc files used during startup

startup, vim

Solution

`:scriptnames` lists all sourced script names, in the order they were first sourced.

Problem

I've moved my vimrc file out of the home directory to pathogenize the setup, but it looks like my vim is still picking up a redundant vimrc file that I made somewhere. Is there some variable in vim that I can echo that'll show what files were used during startup?

Original source