diff --git a/wiki/FAQ.md b/wiki/FAQ.md index ac5515521..361c71b57 100644 --- a/wiki/FAQ.md +++ b/wiki/FAQ.md @@ -1,3 +1,11 @@ ### Where should I put my configration? -SpaceVim load custom configuration from `~/.SpaceVim.d/init.vim`. \ No newline at end of file +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 +```