A shared dotfiles distribution for zsh, vim, tmux, and git, targeting macOS and Ubuntu.
Inspired by Skwp Dotfiles and ThoughtBot Dotfiles.
- Zsh with vi mode, custom theme (peepcode), syntax highlighting, and extensive aliases
- Vim with vim-plug, gruvbox colorscheme, ALE linting, NERDTree, CtrlP, and tmux integration
- Tmux with
C-aprefix, vim-aware pane navigation, battery status, and vi copy mode - Git with aliases, patience diff, vimdiff merge tool, and rerere enabled
- mise for Ruby and Node.js version management
- Docker and Docker Compose via OrbStack (macOS) or Docker CE (Linux, optional)
- curl
On Ubuntu, if not already installed:
sudo apt-get install -y curlbash -c "$(curl -fSs https://raw.githubusercontent.com/campuscode/cc_dotfiles/main/install.sh)"You will be prompted for your password to change the default shell to zsh.
For local development installs (from a cloned repo):
LOCAL_INSTALL=1 bash install.shTo update your dotfiles configuration (re-create symlinks, update plugins, install fonts):
cd ~/.cc_dotfiles && git pull && rake installThis is safe to run multiple times — your *.local files will be preserved.
Do not edit the dotfiles directly, as your changes will be overwritten on the next update. Instead, use the .local counterparts for your personal settings:
~/.vimrc.local— Vim overrides (colorscheme, extra plugins, etc.)~/.tmux.conf.local— Tmux overrides~/.zshrc.local— Zsh overrides (extra aliases, PATH, etc.)~/.aliases.local— Extra aliases~/.gitconfig.local— Git overrides (user name, email, etc.)
Every config file sources a .local counterpart if present. Place your personal overrides in these files rather than modifying the repo directly:
| File | Purpose |
|---|---|
~/.aliases.local |
Custom shell aliases |
~/.zshrc.local |
Zsh configuration overrides |
~/.zshenv.local |
Environment variables |
~/.vimrc.local |
Vim settings and colorscheme |
~/.plugins.vim.local |
Additional vim plugins |
~/.tmux.conf.local |
Tmux configuration overrides |
~/.gitconfig.local |
Git user name, email, and overrides |
~/.secrets |
API keys and tokens (not tracked by git) |
- Vim leader:
<Space> - Tmux prefix:
C-a - Zsh vi mode:
jjto escape - Colorscheme: gruvbox (dark)
SKIP_DOCKER=1— skip Docker installation on Linux
