curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
# Command to install neovim:
# +------------------------------------------+
# | Ubuntu |
# +------------------------------------------+
sudo apt install neovim
# +------------------------------------------+
# | DEBIAN |
# +------------------------------------------+
sudo apt-get install neovim
# +------------------------------------------+
# | ARCH LINUX |
# +------------------------------------------+
sudo pacman -S neovim
# +------------------------------------------+
# | SNAP |
# +------------------------------------------+
sudo snap install --beta nvim --classic
# +------------------------------------------+
# | FEDORA |
# +------------------------------------------+
sudo dnf install -y neovim python3-neovim
# +------------------------------------------+
# | CentOS 8 / RHEL 8 |
# +------------------------------------------+
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
yum install -y neovim python3-neovim
# +------------------------------------------+
# | Clear Linux OS |
# +------------------------------------------+
sudo swupd bundle-add neovim
# +------------------------------------------+
# | Flatpak |
# +------------------------------------------+
flatpak install flathub io.neovim.nvim
flatpak run io.neovim.nvim
# +------------------------------------------+
# | GENTOO Linux |
# +------------------------------------------+
emerge -a app-editors/neovim
# +------------------------------------------+
# | OpenSUSE |
# +------------------------------------------+
sudo zypper in neovim
# +--------------------------------------------------------------+
# | For More Info see here - |
# | https://github.com/neovim/neovim/wiki/Installing-Neovim |
# +--------------------------------------------------------------+
#Install neovim with darkone, NERDTree, vim-airline and auto-pairs
#Fedora
git clone https://github.com/bisaek/neovim-config.git && sh neovim-config/fedora_install.sh
#Debian/Ubuntu
git clone https://github.com/bisaek/neovim-config.git && sh neovim-config/debian_install.sh
#Arch
git clone https://github.com/bisaek/neovim-config.git && sh neovim-config/arch_install.sh
# For more Info: https://github.com/bisaek/neovim-config
"// PLUGIN SETTINGS
call plug#begin('~/.config/nvim/plugged')
(ここにプラグインリストを書いていく)
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
call plug#end()