Neovim's configurations are located under the following paths, depending on your OS:
OS | PATH |
---|---|
Linux, MacOS | $XDG_CONFIG_HOME/nvim , ~/.config/nvim |
Windows (cmd) | %userprofile%\AppData\Local\nvim\ |
Windows (powershell) | $env:USERPROFILE\AppData\Local\nvim\ |
Linux and Mac
git clone https://github.com/if3chi/nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
Windows
If you're using cmd.exe
:
git clone https://github.com/if3chi/nvim.git %userprofile%\AppData\Local\nvim\
If you're using powershell.exe
git clone https://github.com/if3chi/nvim.git $env:USERPROFILE\AppData\Local\nvim\
Start Neovim
nvim