29 lines
1010 B
Plaintext
Executable File
29 lines
1010 B
Plaintext
Executable File
#!/bin/bash
|
|
# Dev utils
|
|
sudo apt install kitty ranger ripgrep curl zsh
|
|
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
|
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
|
|
|
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
|
chmod u+x nvim.appimage
|
|
./nvim.appimage --appimage-extract
|
|
./squashfs-root/AppRun --version
|
|
sudo mv squashfs-root /
|
|
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
|
|
|
|
yay -S flameshot
|
|
git clone --filter=blob:none --sparse git@github.com:ryanoasis/nerd-fonts
|
|
source nerdfonts/install.sh
|
|
|
|
sudo apt update
|
|
|
|
mkdir -p ~/.local/share/fonts
|
|
cd ~/.local/share/fonts
|
|
curl -fLo "Droid Sans Mono for Powerline Nerd Font Complete.otf" https://github.com/ryanoasis/nerd-fonts/raw/HEAD/patched-fonts/DroidSansMono/complete/Droid%20Sans%20Mono%20Nerd%20Font%20Complete.otf
|
|
cd ~
|
|
|
|
# Tmux
|
|
sudo apt install tmux
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
tmux source ~/.tmux.conf
|