Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwbrooks/dotnvim
Neovim dot files
https://github.com/mwbrooks/dotnvim
Last synced: 18 days ago
JSON representation
Neovim dot files
- Host: GitHub
- URL: https://github.com/mwbrooks/dotnvim
- Owner: mwbrooks
- Created: 2017-11-29T00:32:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-29T00:32:56.000Z (about 7 years ago)
- Last Synced: 2024-10-28T21:11:03.162Z (2 months ago)
- Language: Vim script
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dot Neovim
## Setup Dependencies
Deoplete dependencies:
```bash
brew install python3
```Neovim dependencies:
```bash
pip3 install neovim
```## Install Neovim
```bash
brew install neovim
```## Install Airline Font
- [Install Source Code Pro patched font](https://github.com/ryanoasis/nerd-fonts#patched-fonts) for Airline
- [Learn more about patched fonts](https://powerline.readthedocs.io/en/master/installation.html#patched-fonts) for custom arrows and symbols## Link Dot Files
```bash
git clone https://github.com/mwbrooks/dotnvim.git
ln -s /Users/username/path/to/dotnvim/ ~/.config/nvim
```## Alias `nvim` as `vim`
Add the following to your bash profile:
```bash
alias vim="nvim"
```## Install Neovim Plugins
The `init.vim` is setup to auto-install the plugins on first launch.
Alternatively, you can manually install the plugins with:
```
:PlugInstall
```