Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsantiagoh/nvim
Nvim repository
https://github.com/jsantiagoh/nvim
Last synced: 10 days ago
JSON representation
Nvim repository
- Host: GitHub
- URL: https://github.com/jsantiagoh/nvim
- Owner: jsantiagoh
- Created: 2018-05-10T11:53:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T13:27:29.000Z (over 3 years ago)
- Last Synced: 2024-10-28T16:47:58.276Z (about 2 months ago)
- Language: Vim script
- Size: 58.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nvim
Nvim repository## Installation
```
❯ mkdir -p ~/.config
❯ cd ~/.config
❯ git clone --recursive https://github.com/jsantiagoh/nvim.git
```## First run and packages
This setup uses [minpac](https://github.com/k-takata/minpac) , after installation run inside nvim
```
:call PackUpdate()
```### Go Development
Just install go
## Python Development
Use a specific virtualenv for nvim as described in `:h provider-python`
```
> pyenv install 3.6.6
> pyenv virtualenv 3.6.6 py3nvim
> pyenv activate py3nvim
> pip install pynvim
> pyenv which python # Note the path
> pip install -r requirements.txt
```