'How to reload vimrc file on windows?
I am using gvim on windows. And while editing the _vimrc file I want to reload them immediately to see the change. How can I do it?
Solution 1:[1]
To refresh your _vimrc whilst you are editing it, just use
:so %
which is the shortened form of saying "Source current file".
This will instantly apply your current vimrc but keep in mind that sourcing a new vimrc doesn't undo the effect of the old vimrc in your already open vim sessions.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Stun Brick |
