Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/offa/nvim-config
- Owner: offa
- License: gpl-3.0
- Created: 2016-11-18T16:30:34.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T20:55:06.000Z (4 months ago)
- Last Synced: 2024-08-05T23:43:33.844Z (4 months ago)
- Topics: neovim, nvim, nvim-config, nvim-lua
- Language: Lua
- Homepage:
- Size: 1.91 MB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
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!
```