vimtricks.wiki Concise Vim tricks, one at a time.

How do you reload your vimrc without restarting Vim?

Answer

:source $MYVIMRC

Explanation

Use :source $MYVIMRC or :so % if editing the vimrc to reload configuration. $MYVIMRC is a built-in variable pointing to your vimrc path.

Next

How do I visually select a double-quoted string including the quotes themselves?