https://github.com/kikito/nvim
nvim custom config
https://github.com/kikito/nvim
Last synced: 6 months ago
JSON representation
nvim custom config
- Host: GitHub
- URL: https://github.com/kikito/nvim
- Owner: kikito
- Created: 2016-07-25T16:51:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T13:56:42.000Z (over 3 years ago)
- Last Synced: 2025-03-28T21:43:42.659Z (7 months ago)
- Language: Vim script
- Size: 228 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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
```