From 76497acfb5d94942fb22c01b03bcc5511a363f90 Mon Sep 17 00:00:00 2001 From: Nigel Date: Thu, 4 Apr 2024 22:38:27 +0200 Subject: [PATCH] FEAT: Adding fzf, ripgrep and ollama to my install.sh script --- install.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/install.sh b/install.sh index f82d917..bf7bc97 100644 --- a/install.sh +++ b/install.sh @@ -1,4 +1,21 @@ #!/bin/bash +# 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 + +