You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
478 B
20 lines
478 B
#!/bin/env bash |
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" |
|
|
|
# ubuntu |
|
sudo apt update -y |
|
sudo apt install -y \ |
|
jq \ |
|
ripgrep \ |
|
fd-find \ |
|
zoxide \ |
|
just |
|
|
|
cd /tmp |
|
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz |
|
sudo rm -rf /opt/nvim-linux-x86_64 |
|
sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz |
|
rm nvim-linux-x86_64.tar.gz |
|
sudo ln -sf /opt/nvim-linux-x86_64/bin/nvim /usr/bin/nvim |
|
nvim --version
|
|
|