Skip to content

zjrosen1/nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Requirements

Neovim

brew install neovim/neovim/neovim

Python 2 & 3 Support

pip install neovim pip3 install neovim

Ruby Support

gem install neovim

Ag (The Silver Searcher)

brew install the_silver_searcher

Installation

Simple AF

mkdir ~/.config
git clone http://github.com/zjrosen1/nvim.git ~/.config/nvim
nvim

Plugin Manager

Denite

Add a new plugin inside of ~/.config/nvim/config/bundle.vim

call dein#add('neomake/neomake')

Autocompletion

Deoplete

Add Tern for javascript completion

  • Install tern globally

npm install -g tern

  • Include a .tern-project file in the root of your project

Syntax Checking

Neomake

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

Fuzzy Finder

CtrlP

Takes advantage of ag for faster searching.

Project Search

Ag.vim

The following mapping will open the command prompt

:Ag search

Snippets

Neosnippet

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

Releases

No releases published

Packages

No packages published