Links: Vim

Vim comes with a built in file manager called netrw, that allows for basic file navigation and management inside the editor.

You can open netrw by passing a directory as an argument when opening Vim, or with one of the next commands:

commanddescription
:ExOpen current directory in current Vim window
:Ex dirOpen <dir> in current Vim window
:Sex(yes, you read it right) like :Ex but in a horizontal split
:VexLike :Ex but in a vertical split
:TexLike :Ex but in a new tab

IDE like side file manager

With :40vs +Ex you can open a small split on the left with the file manager.
You can set netrw_browse_split = 4 to open files in the previous split.

Commands inside netrw

commanddescription
<Enter>open file in vim
Ddelete file
Rrename file
Xexecute file
%create new file

You can also use visual mode to select multiple files