software

SDDM

sudo pacman -S sddm
sudo systemctl enable sddm

KDE

sudo pacman -S plasma ark dolphin spectacle partitionmanager

IME

sudo pacman -S fcitx5-chewing fcitx5-configtool fcitx5-gtk fcitx5-material-color  fcitx5-qt

App launcher

sudo pacman -S rofi
mkdir -p ~/.config/rofi/
rofi -dump-xresources > ~/.config/rofi/config

Fonts

sudo pacman -S ttf-firacode-nerd ttf-fira-code

Zsh

zsh setup

sudo pacman -S zsh
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z
	yay -S --noconfirm zsh-theme-powerlevel10k-git
echo 'source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc

Nvidia driver

sudo pacman -S nvidia nvidia nvidia-lts
yay -S nvidia-settings

Obsidian and Quartz

sudo pacman -S obsidian nodejs npm
npm i yargs 

Vscode

yay -S visual-studio-code-bin

Neovim

sudo pacman -S neovim
git clone https://github.com/github/copilot.vim.git \
  ~/.config/nvim/pack/github/start/copilot.vim

TMUX

tmux plugin manager tmux catppuccin theme

sudo pacman -S tmux
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

ROS env

yay -S miniconda3
sudo ln -s /opt/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh
sudo chown -R $USER /opt/miniconda3
conda config --set auto_activate_base false