Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 440 Bytes

File metadata and controls

37 lines (23 loc) · 440 Bytes

My neovim configuration

Installation

to install neovim :

Debian :

sudo apt install neovim

Arch :

sudo pacman -S neovim

Other : https://github.com/neovim/neovim/blob/master/INSTALL.md

Configuration

to get neovim running with the associated config, run

DIRECTORY=~/.config
if [ ! -d "$DIRECTORY" ]; then
  mkdir $DIRECTORY
fi

cd $DIRECTORY
git clone https://github.com/epg1213/nvim.git