A collection of my configuration files.
- oh-my-zsh
- nvm (recommended: zsh-nvm)
- vim (
brew install vim
) - Vundle
./install.sh
(creates symlinks mapping to the files in this directory)- [in vim]
:PluginInstall
- Follow the installation instructions for
YouCompleteMe
- Install Node dependencies in
vim-prettier
's bundle directory per its instructions
YCM takes some funky setup sometimes. Not totally sure what the right from-scratch path is, but I recently got YCM to work after doing this:
- Install
macvim
via brew;link
it via brew. - Install & link Python via brew (in conjunction with
pyenv
). - Use the brew-install Python at
/usr/local/bin/python3
to run YCM'sinstall.py
. - Configure YCM to use Brew's Python via
let g:ycm_server_python_interpreter = '/usr/local/bin/python3'
in.vimrc
.