Personal config, extracted from an Omarchy-based desktop. Additive only — does not replace Omarchy defaults, just layers on top of them via override hooks.
| File | Live path | Notes |
|---|---|---|
git/config |
~/.config/git/config |
Identity, aliases, diff/push prefs |
git/ignore |
~/.config/git/ignore |
Global gitignore |
zsh/.zshrc |
~/.zshrc |
Personal aliases, colors, and shell additions |
starship/starship.toml |
~/.config/starship.toml |
Starship prompt — cyan minimal theme |
tmux/local.conf |
~/.config/tmux/local.conf |
Personal tmux bindings, sourced by Omarchy's tmux.conf |
nvim/options.lua |
~/.config/nvim/lua/config/options.lua |
Personal vim options (guicursor etc.) |
nvim/plugins/smear-cursor.lua |
~/.config/nvim/lua/plugins/smear-cursor.lua |
Cursor trail plugin |
Do not copy these into this repo — they may be overwritten by omarchy update:
~/.config/tmux/tmux.conf— Omarchy base tmux config (has asource local.confhook at the end)~/.config/nvim/lua/plugins/— Omarchy plugin files (theme, all-themes, etc.)~/.config/nvim/lua/config/lazy.lua,keymaps.lua,autocmds.lua— Omarchy stubs~/.config/omarchy/— theme configuration~/.local/share/omarchy/— Omarchy source
git clone <repo-url> ~/dotfiles
~/dotfiles/bootstrap/link.shThe script is safe to re-run. It skips symlinks that already point to the right place, and warns (without overwriting) if a non-symlink file exists at the target path.
./bootstrap/link.sh # desktop — all links
./bootstrap/link.sh --server # git + shell + tmux, no nvim
./bootstrap/link.sh --container # git + shell only- Install Omarchy per its instructions
git clone <repo> ~/dotfiles./dotfiles/bootstrap/link.sh
-
git clone <repo> ~/dotfiles -
./dotfiles/bootstrap/link.sh --serverThe server doesn't need Omarchy. The tmux local.conf will be linked, but it only applies if you also have a tmux.conf that sources it. On a plain server you can either use a minimal tmux.conf that sources
~/.config/tmux/local.conf, or skip tmux entirely.
- In your Dockerfile/containerfile, clone the repo during user setup
- Run
./dotfiles/bootstrap/link.sh --container - This gives you git identity and zsh config without any desktop or editor setup
- Put the file in the appropriate subdirectory here
- Run
link.shto create/update the symlink, OR manually:ln -s ~/dotfiles/... ~/.config/... - Add it to the table above and to
bootstrap/link.sh - Commit
Omarchy's ~/.config/tmux/tmux.conf sources local.conf at the end via:
if-shell "[ -f ~/.config/tmux/local.conf ]" "source ~/.config/tmux/local.conf"If Omarchy ever overwrites tmux.conf, check that this line is still present. The
file is at ~/.local/share/omarchy/config/tmux/tmux.conf upstream.