🚚 split install script by program
This commit is contained in:
parent
d9c3c12b82
commit
9ee123ab8a
6 changed files with 63 additions and 28 deletions
10
install_nvim.sh
Normal file
10
install_nvim.sh
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Install neovim
|
||||
echo >&2 "====================================================================="
|
||||
echo >&2 " >> installing nvim"
|
||||
# curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
||||
NVIM_VERSION=0.9.0
|
||||
curl -LO https://github.com/neovim/neovim/releases/tag/v${NVIM_VERSION}/download/nvim.appimage
|
||||
chmod u+x nvim.appimage
|
||||
./nvim.appimage
|
||||
Loading…
Add table
Add a link
Reference in a new issue