Use symlinks to add a file copy in the correct location. Any questions about creating the symlink, refer to this Stack Exchange answer.
.vimrc ln -s {path to}/nvim_files/vimrc ~/.vimrc
.tmux.conf ln -s {path to}/nvim_files/tmux.conf ~/.tmux.conf
Inside of Neovims init.vim file (~/.config/nvim/init.vim most likely)
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc
Github URL with all of the intructions to install. You should only need to install Plugged to your machine, the work needed for the .vimrc file should already be done.
Remember to run :PlugInstall
inside of neovim to install the plugins in the .vimrc file.
Install tmux using brew install tmux
. Then source your tmux file using tmux source ~/.tmux.conf
.
If you don't already, add the tpm repo to your .tmux/config After that, source the .tmux file and install the plugins using prefix + I. Note, for the catpuccino theme to work properly, you may need to install a Nerd Font. I recommend Commit Mono
- This is a placeholder for now.