Installing vim via msys2 and config vim on windows10
1. Installing vim
Open msys2 ucrt64 terminal and enter command as follows:
```
pacman -S vim
```
2. Configure vim
Open msys2 ucrt64 terminal and enter command as follows:
```
cd ~
touch .vimrc
```
Adding the content into .vimrc which you want to.
For example:
```
set number
```
Comments
Post a Comment