I want to edit .vimrc file from Vim and apply them without restarting Vim.
I want to edit .vimrc file from Vim and apply them without restarting Vim.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, just use the
:so %command while editing your .vimrc.If you want vim to auto-reload your configuration, you must add the following commands :
the grouping of autocommand is here to avoid "exponential" reloading if you save several times your configuration.