/dotfiles

My personal home setup

Primary LanguageShell

Home Configs

Distro WM Bar Compositor Terminal Shell Package Manager
Arch BSPWM Polybar Picom Kitty Zsh Paru

The fonts somehow uses a lot of space...

Setup (WIP)

Zsh & Oh-My-Zsh

Packages Used

fd powerline-fonts ttf-font-awesome 

Plugins

Installing Oh-My-Zsh and plugins

  1. Download and execute the install script. Make sure to copy your old .zshrc configs to the new config.
  2. Clone zsh-syntax-highlighting to oh-my-zsh plugins.
  3. Clone zsh-autosuggestions to oh-my-zsh plugins.
  4. CLone zsh-Z to oh-my-zsh plugins.
  5. Clone and install fzf.
  6. Install fd
  7. Add the omz plugins in .zshrc config. fzf git history-substring-search colored-man-pages zsh-autosuggestions zsh-syntax-highlighting zsh-z
  8. Install Powerlevel10k and set the theme powerlevel10k/powerlevel10k.
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

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/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z

git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install

paru -S fd

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

References