Skip to content

gczgcz2015/nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[TOC]

NeoVim

neovim

git clone git@github.com:minhanghuang/nvim.git ~/.config/nvim

#1 Installation

#1.1 neovim

minimum neovim 0.7.0

  • macOS
brew install neovim 
  • Ubuntu
wget https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.deb
sudo dpkg -i nvim-linux64.deb

// Or 

wget https://github.com/neovim/neovim/releases/download/v0.7.0/nvim-linux64.tar.gz
tar -zxvf nvim-linux64.tar.gz
sudo cp -r nvim-linux64/* /usr/local

#1.2 node

  • macOS
brew install nodejs yarn
npm install -g cnpm --registry=https://registry.npm.taobao.org
yarn config set registry https://registry.npm.taobao.org/
  • Ubuntu
sudo apt install python3-venv
sudo apt install -y nodejs npm  
sudo npm config set registry https://registry.npm.taobao.org
sudo npm install n -g
sudo n stable  # 安装最新版本, coc.nvim需要依赖高版本node
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn
yarn config set registry https://registry.npm.taobao.org/

#1.3 python lib

pip3 install neovim 
pip3 install jedi
pip3 install jedi-language-server==0.35.1

#1.4 vim plugin

cd ~/.config/nvim
./install.sh

About

NeoVim Cpp and Python IDE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 54.2%
  • Lua 39.1%
  • Shell 3.8%
  • Vim Snippet 2.9%