1
0

Clean up root directory

This commit is contained in:
2025-01-17 22:51:33 +01:00
parent 60dc15ace3
commit 4e0d9c5591
5 changed files with 1 additions and 1 deletions

21
scripts/install.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/zsh
# 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
# install ripgrep (Using APT! NOTE: Most likely not the latest version )
apt update
apt install ripgrep
# install tmux plugin manager
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# 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
apt install picom