2024-04-09 20:13:23 +00:00
|
|
|
#!/bin/zsh
|
2024-04-03 19:09:33 +00:00
|
|
|
|
2024-04-04 20:38:27 +00:00
|
|
|
# install fzf
|
|
|
|
git clone --depth 1 https://github.com/junegunn/fzf.git /tmp/fzf-source
|
|
|
|
starting_dir=$(pwd)
|
|
|
|
cd /tmp/fzf-source
|
|
|
|
./install
|
|
|
|
cd $starting_dir
|
2024-04-03 19:09:33 +00:00
|
|
|
|
2024-04-04 20:38:27 +00:00
|
|
|
# install ripgrep (Using APT! NOTE: Most likely not the latest version )
|
|
|
|
apt update
|
|
|
|
apt install ripgrep
|
|
|
|
|
|
|
|
# install tmux plugin manager
|
2024-04-03 19:09:33 +00:00
|
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
2024-04-04 20:38:27 +00:00
|
|
|
|
|
|
|
# Install local Ollama runner
|
|
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
|
|
ollama run codellama:7b # See https://ollama.com/library/codellama for available models
|
|
|
|
|
2024-04-09 16:22:21 +00:00
|
|
|
apt install picom
|