mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
36 lines
524 B
Bash
Executable File
36 lines
524 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! command -v yay >/dev/null 2>&1; then
|
|
sudo pacman -S --noconfirm --needed git base-devel
|
|
git clone https://aur.archlinux.org/yay.git ~/yay
|
|
cd ~/yay
|
|
makepkg -si
|
|
rm -rf ~/yay
|
|
fi
|
|
|
|
# Packages
|
|
yay -S --noconfirm --needed \
|
|
bat \
|
|
eza \
|
|
fastfetch \
|
|
fzf \
|
|
git-lfs \
|
|
gum \
|
|
jq \
|
|
neovim \
|
|
nodejs \
|
|
npm \
|
|
pcre2 \
|
|
starship \
|
|
tldr \
|
|
tmux \
|
|
tree-sitter-cli \
|
|
zoxide \
|
|
zsh
|
|
|
|
# Fonts
|
|
yay -S --noconfirm \
|
|
ttf-jetbrains-mono-nerd \
|
|
ttf-firacode \
|
|
ttf-inconsolata-nerd
|