Nigel
d651cce8ca
- hidden files now make use of the dot- prefix - Activate.sh can be used to activate all stow packages - I used to append tons of paths to my PATH environment variable I have now changed to moving build binaries into /opt and symlinking the necessary binaries to /usr/bin/local. This makes all tools build also available as the root user - Replaced the dmenu in i3 with rofi and a nice fitting colourscheme
22 lines
553 B
Bash
Executable File
22 lines
553 B
Bash
Executable File
#!/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
|