1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 22:20:06 +08:00

Update wiki for E492: Not an editor command: ^M

close #962
This commit is contained in:
wsdjeg 2017-11-13 17:14:19 +08:00
parent b81121e2c0
commit 8aebafe37c

View File

@ -1,3 +1,11 @@
### Where should I put my configration?
SpaceVim load custom configuration from `~/.SpaceVim.d/init.vim`.
SpaceVim load custom configuration from `~/.SpaceVim.d/init.vim`.
1. E492: Not an editor command: ^M
The problem was git auto added ^M when cloning, solved by:
```sh
git config --global core.autocrlf input
```