ide/vim

neovim

C/H 2017. 2. 13. 08:30

MAC

# Homebrew
brew install neovim/neovim/neovim

# Macports
sudo port selfupdate
sudo port install neovim

# config
cp -r ~/.vimrc ~/.config/nvim/init.nvim
#alias nvi="nvim" > ~/.profile

Linux

# Debian
sudo apt-get install neovim

# Ubuntu
sudo apt-get install software-properties-common
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:neovim-ppa/stable
sudo apt-get update

# Fedora
dnf -y install neovim
dnf -y install python2-neovim python3-neovim

# CentOS 7 / RHEL 7
# http://copr.fedoraproject.org/coprs/dperson/neovim/
yum -y install epel-release
curl -o /etc/yum.repos.d/dperson-neovim-epel-7.repo https://copr.fedorainfracloud.org/coprs/dperson/neovim/repo/epel-7/dperson-neovim-epel-7.repo 
yum -y install neovim


반응형

'ide > vim' 카테고리의 다른 글

vi/vim  (0) 2017.03.09
github.com/crooloose/.vimrc  (0) 2017.02.27
neovim :help  (0) 2017.02.09
vim vundle plugin  (0) 2016.03.02
VIM-IDE  (0) 2016.01.08