My development environment for macOS and Linux.
Built around a highly customized Neovim setup, terminal-first workflows, and a carefully crafted macOS environment.
- Neovim: A highly customized setup focused on stability, simplicity, and full control. Most functionality is implemented from scratch rather than delegated to plugins
- FZF: A heavily customized terminal workflow built around fzf for fast navigation, searching, and command execution
- Terminal: Kitty / Ghostty, Tmux, and Zsh (Zimfw + Starship) form the foundation of a productive terminal environment
- File Management: A carefully crafted lf setup for efficient keyboard-driven file navigation and manipulation
- macOS Workflow: Karabiner-Element, SketchyBar, and Yabai provide a fully keyboard-driven desktop experience
📖 Neovim Documentation
For a detailed walkthrough of my Neovim configuration and custom modules: Nvim README
- My scripts: bin
Using a bare repository. The dotfiles can reside where they are. No symlinks needed.
Create a bare repository to store the history:
git init --bare $HOME/dotfilesCreate an alias in zshrc, tell Git where the history and the working tree live:
alias dot='git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'Tell Git not to show all the untracked files, otherwise all files under $HOME will be shown when running git status:
dot config status.showUntrackedFiles noSet up the remote repository for syncing:
dot remote add origin https://github.com/rockyzhang24/dotfiles.gitDone! Now we can manage our dotfiles.
dot status
dot add ~/.config/zsh
dot commit -m "update zsh config"
dot push origin masterClone the dotfiles into a bare repository:
git clone --bare https://github.com/rockyzhang24/dotfiles.git $HOME/dotfilesDefine the alias in the current shell scope:
alias dot='git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'Backup the stock configuration files that will be overwritten:
mkdir -p .config-backup
dot checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}Checkout the actual content from the bare repository to $HOME:
dot checkoutDon't show untracked files and directories:
dot config status.showUntrackedFiles noDone!
In order for vim-fugitive to recognize this bare repo, the following additional configurations are required:
dot config core.bare 'false'
dot config core.worktree "$HOME"