6 lines
194 B
Bash
Executable File
6 lines
194 B
Bash
Executable File
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
|
|
sudo rm -rf /opt/nvim
|
|
sudo tar -C /opt -xzf nvim-linux64.tar.gz
|
|
|
|
export PATH="$PATH:/opt/nvim-linux64/bin"
|