9 lines
323 B
Bash
9 lines
323 B
Bash
|
#!/bin/bash
|
||
|
PLUGINS="$HOME/.local/share/nvim/site/pack/plugins/start"
|
||
|
mkdir -p "$PLUGINS"
|
||
|
|
||
|
wget https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim.appimage
|
||
|
chmod +x nvim.appimage
|
||
|
sudo mv ./nvim.appimage /usr/bin/nvim
|
||
|
git clone --depth=1 https://github.com/nvim-lua/plenary.nvim.git "$PLUGINS/plenary.nvim"
|