How to open VIM with with separate config ?
By default, we can config our VIM using .vimrc file and VIM will using this file as source of configuration.
But, what if we want to separate vim config file ( e.g .awesome_vimrc, .true_awesome_vimrc, .best_vimrc, etc) ? it is possible ?
Yes, it is possible. We can check in man page for manual instruction, you can type man vim from terminal for open man page.
Manual Guide will showed up and go to the -u section, like below :
As we can see, we can use option -u when open vim for specify config when open VIM. For example, out configuration file named .awesome_vimrc and when open new VIM, we can use this command :
vim -u .awesome_vimrcVIM will opened normally with .awesome_vimrc as configuration, like below :



