Personal dotfiles managed with GNU Stow.
git clone https://github.com/dsumac/dotfiles ~/dotfiles
cd ~/dotfilesThen stow the configs you want:
stow zsh
stow tmux
stow vim
stow git
stow vscode
stow cmus
stow -t ~/.newsboat newsboatFinally, create the projects directory if it does not exist:
mkdir -p ~/projectsdotfiles/
├── aliases/ # Shell aliases, auto-loaded (*.alias files)
├── bin/ # Custom scripts, added to $PATH automatically
├── cmus/ # cmus music player config (stow)
├── cowsay/ # Custom cowsay cows
├── docs/ # Reference documentation
├── env/ # Environment variables, auto-loaded (*.env files)
├── git/ # Git config (stow)
├── newsboat/ # Newsboat RSS reader config (stow)
├── tmux/ # Tmux config (stow)
├── vim/ # Vim config (stow)
├── vscode/ # VSCode settings (stow)
└── zsh/ # Zsh config (stow)
These directories are not stowed — they are loaded automatically by the shell.
| Directory | Description |
|---|---|
aliases |
Add a *.alias file and it will be sourced at startup |
bin |
Add scripts here — the directory is on $PATH |
docs |
Reference documentation (DNS, shell shortcuts, tools) |
env |
Add a *.env file and it will be sourced at startup |
Machine-specific settings that should not be committed go in ~/.dotfiles/.local/:
.local/
├── zsh/ # Any *.zsh file here is sourced at startup
└── bin/ # Local scripts added to $PATH
Create the directory if it does not exist:
mkdir -p ~/dotfiles/.local/zsh
mkdir -p ~/dotfiles/.local/binThis config uses Tmux Plugin Manager (tpm).
- Install tpm
- Install plugins defined in
.tmux.conf
| Script | Description |
|---|---|
battery |
Show battery state and percentage |
buildHosts |
Build /etc/hosts file |
certificate |
Inspect TLS certificates |
countf |
Count files in a directory |
jwtDecode |
Decode a JWT token (requires jq) |
locateip |
Geolocate an IP address |
publicip |
Print your public IP address |
translate |
Translate text via API |
unix |
Display a splash/login screen |
weather |
Show current weather |
whereami |
Geolocate your current public IP |
Inspiration from:
MIT — Copyright (c) dsumac