duplicating files
This is something I would always leverage a file tree plugin for. I can't find a good way to accomplish this with my current file tree plugin (NvimTree) so finding a native, effective way without plugins was needed.
Method 1: You can open the new file first and then copy the original file into the buffer
:e another-file
:r original-file
Method 2 (my personal favorite): use :sav duplicated-file
while in the file you want to duplicate.
:sav[eas][!] [++opt] {file}
Save the current buffer under the name {file} and set
the filename of the current buffer to {file}. The
previous name is used for the alternate file name.