I have merged the Linux branch into master! Now the same configuration files can be used on Windows or Linux!
Feel free to use/modify what you like!
If you have already customized your installation of neovim, then don't do this! It is much better to copy the lines you like into your own config file.
I use the $HOME variable to refer to the home directory of your account.
In Windows, that would be C:\users\<your username>
In Linux, it would be /home/<your username>
However, you can substitute "~"(tilde) for $HOME and it should work fine.
-
Open a terminal/powershell
-
Move to the directory where your neovim configuration files are kept
cd $HOME\AppData\Local\
cd $HOME/.config
- Clone this repository
git clone https://github.com/Strike-F8/nvim.git
- Create backup, swap, and bundle directories
mkdir $HOME\.vim
cd $HOME\.vim
mkdir backup
mkdir swap
mkdir bundle
mkdir $HOME/.vim
cd $HOME/.vim
mkdir backup
mkdir swap
mkdir bundle
- Open neovim
nvim
You will be greeted with many errors!
Have no fear! All we need to do is install the plugins that are referenced in the configuration files.
-
Press enter until the errors go away.
-
Then type
:
to enter command mode and enter the command:
PlugInstall
This will automatically read the plugins listed in init.vim and install them! So convenient!
- Now exit neovim
:q
- Once you start neovim again it should work perfectly!