Config for my shell and terminal setup. Uses symlinks into this repo so everything stays in one place.
| File | What it does |
|---|---|
install.sh |
Main setup. Installs packages, Oh My Zsh, Powerlevel10k, plugins, TPM. Backs up and symlinks configs. |
install-apps.sh |
Installs apps from their curl installers (opencode, bun). Skips anything already present. |
.zshrc |
Zsh config |
.p10k.zsh |
Powerlevel10k theme config |
.tmux.conf |
Tmux config |
.gitconfig |
Git config |
kitty/ |
Kitty terminal config |
gnome-termial-profile.dconf |
Gnome Terminal profile |
curl -fsSL https://raw.githubusercontent.com/devroy10/dotfiles/main/install.sh | bashFor the apps script:
curl -fsSL https://raw.githubusercontent.com/devroy10/dotfiles/main/install-apps.sh | bash- Run from a fresh machine or an existing one. The main script backs up old configs before symlinking.
- Oh My Zsh and Powerlevel10k are handled by
install.sh, so they don't appear ininstall-apps.sh. - Install a Nerd Font (MesloLGS NF works) in your terminal so the Powerlevel10k icons render properly.
Drop a new install function in install-apps.sh, call it at the bottom, and check it with command -v.
install_myapp() {
if command -v myapp >/dev/null 2>&1; then
echo "myapp already installed"
return
fi
curl -fsSL https://example.com/install | bash
}Symlink new configs by adding a line to install.sh after the existing ones.