An open API service indexing awesome lists of open source software.

https://github.com/kikito/nvim

nvim custom config
https://github.com/kikito/nvim

Last synced: 6 months ago
JSON representation

nvim custom config

Awesome Lists containing this project

README

          

# nvim

This is my custom neovim installation. I've tested it on a Mac with OSX

## Installation

Prerequisite: install python3 with the neovim client for the python-reliant
plugins (eg deoplete) to work.

```
brew install python3
pip3 install neovim
```

Prerequisite: install FZF and The Silver Searcher to make the fuzzy search and
global search (:G) work:
```
brew install fzf
brew install the_silver_searcher

```

Prerequisite: Fix OSX settings for the terminal regarding Control-H
([reference](https://github.com/neovim/neovim/issues/2048#issuecomment-78045837))

```
infocmp $TERM | sed 's/kbs=^[hH]/kbs=177/' > $TERM.ti
tic $TERM.ti
```

Installation:
```
mkdir -p ~/.config
cd ~/.config
git clone https://github.com/kikito/nvim
```

Customize `~/.config/nvim/init.vim` to your liking and then enter neovim and
install all the plugins:
```
:PlugInstall
```