Skip to content

Latest commit

 

History

History
executable file
·
50 lines (33 loc) · 934 Bytes

README.md

File metadata and controls

executable file
·
50 lines (33 loc) · 934 Bytes

This is just my vim/neovim config that I use for development.

To install:

Symbolic link to vim config and vim directory

ln -s /path/to/repo/.vimrc ~/.vimrc
ln -s /path/to/repo ~/.vim

(Optional) for neovim

ln -s /path/to/repo ~/.config/nvim

Then launch vim (or nvim) and :PlugInstall.

Also recommended you install the python client for neovim. We use an autocompletion plugin called deoplete that requires it.

brew install python3
pip3 install neovim

Note: If you install miniconda, it will install its own copy of Python. Be sure to pip-install neovim again again.

(Optional) for Oni

Oni might not be able to find your (custom) installation of Python3. Configure Oni with

"environment.additionalPaths": [
  // Custom path(s)
  "/path/to/python3",

  // the below are the defaults on Linux/macOS

  "/usr/bin",
  "/usr/local/bin"
]

Enjoy.