brew install neovim/neovim/neovim
pip install neovim
pip3 install neovim
gem install neovim
brew install the_silver_searcher
Simple AF
mkdir ~/.config
git clone http://github.com/zjrosen1/nvim.git ~/.config/nvim
nvim
Add a new plugin inside of ~/.config/nvim/config/bundle.vim
call dein#add('neomake/neomake')
Add Tern for javascript completion
- Install tern globally
npm install -g tern
- Include a
.tern-project
file in the root of your project
Unimpaired is included so you can switch between next and previous errors in the loclist with ]l [l
respectively
Toggle the loclist window with <leader>l
Takes advantage of ag for faster searching.
The following mapping will open the command prompt
:Ag search
Snippets Path
~/.config/nvim/bundle/neosnippet-snippets/neosnippets/
- Expand a snippet
f<ctrl-j>
<tab>
or <ctrl-j>
to jump to the next marker in the snippet