17 lines
404 B
Bash
Executable File
17 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo apt install \
|
|
git \
|
|
unzip \
|
|
fzf
|
|
|
|
curl -s https://ohmyposh.dev/install.sh | bash -s
|
|
|
|
# Install neovim from prebuilt binaries
|
|
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz
|
|
sudo rm -rf /opt/nvim
|
|
sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz
|
|
|
|
# Install nvm
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
|