13 lines
452 B
Bash
13 lines
452 B
Bash
|
#!/bin/bash
|
||
|
apt-get update
|
||
|
apt-get install -y zsh git
|
||
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||
|
cd ~/
|
||
|
rm -f ~/.zshrc
|
||
|
wget https://gitea.sikorski.cloud/RogerSik/zshrc/raw/branch/main/.zshrc
|
||
|
|
||
|
# fzf
|
||
|
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
|
||
|
~/.fzf/install
|
||
|
git clone --depth 1 https://github.com/unixorn/fzf-zsh-plugin.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-zsh-plugin
|