ryuvi / install_script

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ENVIRONMENT INSTALL

TABLE OF CONTENT

FUNDAMENTALS

install() {
    app=$1
    echo "Install App $app? (y/n)"
    read answer

    if [ $answer -eq 'y' ]; then
        sudo pacman -S --noconfirm $app
    fi
}

BASE

install curl
install wget
install vim
install git
install ttf-fira-code
install base-devel
install doas

ZSH

install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sh -c "$(curl -fsSL https://git.io/zinit-install)"
echo -e "zinit light zdharma-continuum/fast-syntax-highlighting\nzinit light zsh-users/zsh-autosuggestions\nzinit light zsh-users/zsh-completions" >> $HOME/.zshrc

EMACS

install emacs
install ripgrep
install fd
git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.emacs.d
. ~/.emacs.d/bin/doom install

TERM

install alacritty

About


Languages

Language:Shell 100.0%