Added eza

This commit is contained in:
2025-07-31 02:14:48 +02:00
parent 753ee709f2
commit 8b0d4464ca
3 changed files with 16 additions and 11 deletions

View File

@@ -11,9 +11,9 @@ oh-my-posh init fish --config $HOME/.config/ohmyposh/craver.omp.json | source
zoxide init fish | source
fzf --fish | source
alias ll="ls -lh"
alias la="ls -lha"
alias lc="clear && ll"
alias ll="eza -lh"
alias la="eza -lha"
alias lc="clear && eza"
alias fulltree="tree -I \".git\" -a ."
alias burn-orphanage="pacman -Qqtd | sudo pacman -Rsu -"

View File

@@ -4,13 +4,13 @@ echo "Installing paru dependencies"
sudo pacman -S base-devel git --needed --noconfirm
if ! command -v paru &>/dev/null; then
echo "Installing paru..."
TEMP_DIR=$(mktemp -d)
git clone https://aur.archlinux.org/paru.git $TEMP_DIR/paru
cd $TEMP_DIR/paru
makepkg -si --noconfirm
echo "Installing paru..."
TEMP_DIR=$(mktemp -d)
git clone https://aur.archlinux.org/paru.git $TEMP_DIR/paru
cd $TEMP_DIR/paru
makepkg -si --noconfirm
fi
echo "Installing packages"
@@ -20,6 +20,10 @@ paru -S --noconfirm --needed - <$HOME/.config/yadm/data/packages.txt
echo "Changing default shell"
sudo chsh -s /bin/fish $USER
echo "Setting default git branch to \"main\""
git config --global init.defaultBranch main
echo "Applying arrpc fix"
sudo cp /usr/lib/systemd/user/arrpc.service /etc/systemd/system/arrpc.service
sudo systemctl enable arrpc --now
sudo systemctl enable arrpc --now

View File

@@ -22,3 +22,4 @@ ttf-sourcecodepro-nerd
vim
wl-clipboard
zoxide
eza