Personal dotfiles managed with GNU Stow.
Caution
This will install dotfiles to $HOME.
Using git worktree:
git clone --bare \
"git@github.com:hllvc/dotfiles.git" \
"dotfiles/.bare" && cd "dotfiles" \
&& echo "gitdir: ./.bare" > .git \
&& printf "\tfetch = +refs/heads/*:refs/remotes/origin/*" >> .bare/config \
&& git worktree add "$(git branch --show-current)" \
&& ./load.shWithout git worktree, normal:
git clone "git@github.com:hllvc/dotfiles.git" \
&& cd "dotfiles" \
&& ./load.sh./load.sh- Symlink dotfiles to home./load.sh -a- Adopt existing files (convert to symlinks)./load.sh -u- Unload LaunchAgents./load.sh -h- Show help
- Homebrew (auto-installed by
load.sh) - GNU Stow (auto-installed by
load.sh) - Zsh with Oh-My-Zsh
- Powerlevel10k theme
.
├── .config/ # Application configs
│ ├── nvim/ # Neovim (Lua + lazy.nvim)
│ ├── ghostty/ # Ghostty terminal
│ ├── karabiner/ # Keyboard remapping
│ ├── launch-agents/ # macOS LaunchAgents
│ └── 1Password/ # SSH agent config
├── .shell/ # Shell configuration
│ ├── profile # Environment variables, PATH
│ ├── aliases # Shell aliases
│ ├── zshinit # Zsh plugins/theme setup
│ └── scripts/ # Custom scripts
│ ├── functions/ # Scripts that can cd (gbare.sh, sw.sh)
│ ├── init/ # Startup scripts (tt.sh)
│ ├── tmux/ # Tmux helper scripts
│ └── unloaded/ # Inactive scripts
├── .zshrc # Main Zsh config
├── .tmux.conf # Tmux config
├── .gitconfig # Git config
├── .p10k.zsh # Powerlevel10k theme
└── load.sh # Installation script
See detailed documentation: .config/ | .shell/
- gbare.sh - Set up a bare repository with GitHub integration
- sw.sh - Smart branch switching with worktree support
Separate tmux sockets for work/personal contexts:
personal- Personal projectswork- Work projects
LaunchAgents auto-start these on login.
- com.sh - Git commit with branch prefix extraction
- j.sh - Jira integration (sprints, worktrees from tickets)
- tt.sh - Tmux socket selector with fzf
Lua-based config with:
- lazy.nvim plugin manager
- LSP (TypeScript, Python, Go, Rust, Terraform, Helm, YAML, JSON, Lua, Markdown)
- Telescope, Treesitter, Copilot
- Custom keymaps (jk escape, L/H buffer nav)
Conditional include for work repositories:
~/.git/stackguardian/.gitconfig- Included for repos under~/.git/stackguardian/