Uploading my dotfiles to a repository.
Using Git
Note: Make sure you are in the root directory
git clone https://github.com/SageHourihan/dotfiles
Change directory into dotfiles
cd dotfiles
Make the install.sh script executable
chmod +x install.sh
Run the install script with the tilde(~) as a parameter
./install.sh ~
Refresh the .bashrc and .bash_profile
source .bashrc source .bash_profile source .tmux.conf
Neovim Installation and Plugin Management (vim-plug)
After running the install script, Neovim's configuration will be symlinked to ~/.config/nvim.
Installing vim-plug:
If you use vim-plug as your plugin manager, you'll need to install it first.
For Unix-like systems, run:
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vimThen open Neovim and run :PlugInstall