Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/offa/nvim-config

Neovim config using vim-plug.
https://github.com/offa/nvim-config

neovim nvim nvim-config nvim-lua

Last synced: about 24 hours ago
JSON representation

Neovim config using vim-plug.

Awesome Lists containing this project

README

        

# [nvim config](https://github.com/offa/nvim-config)

[![ci](https://github.com/offa/nvim-config/actions/workflows/ci.yml/badge.svg)](https://github.com/offa/nvim-config/actions/workflows/ci.yml)
[![GitHub release](https://img.shields.io/github/release/offa/nvim-config.svg)](https://github.com/offa/nvim-config/releases)
[![License](https://img.shields.io/badge/license-GPLv3-yellow.svg)](LICENSE)
![Neovim](https://img.shields.io/badge/nvim-0.7.0+-green.svg)

NeoVim configuration written in Lua using [Plug](https://github.com/junegunn/vim-plug).

## Installation

### Automatic

Use `install.sh` (requires *curl*).

### Manual

```sh
# Ensure config directory
mkdir -p ~/.config/nvim

# Link config
ln -s ./init.lua ~/.config/nvim/init.lua

# Install Plug and Plugins
curl -sfLO ~/.config/nvim/autoload/plug.vim \
--create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
nvim +PlugUpgrade +PlugInstall +qa!
```