Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 800 Bytes

File metadata and controls

58 lines (38 loc) · 800 Bytes

NeoVim Config file

img

Start Guide

1. Install Neovim

sudo snap install --beta nvim --classic

2. Git repo clone

git clone https://github.com/Jay-flow/nvim.git ~/.config/nvim

3. Plug Install

  1. Install vim-plug
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
  1. Open the init.vim file
nvim ~/.config/nvim/init.vim
  1. Install Plugin
:PlugInstall

4. (Optional) Set Neovim to default

  1. Open the file
nvim ~/.zshrc
  1. Add below the command
alias vim="nvim"
  1. Apply
source ~/.zshrc