My personal dotfiles. In my opinion, dotfiles are NOT meant to be forked. That being said, this repository contains lots of useful things (shell functions, scripts, gitconfig) that you can add to your personal setup. As such, I encourage anyone that thinks these dotfiles look useful to try to understand them first and then copy the parts that stand out to them.
Install β’ Contents β’ Notes β’ Credits
git clone https://github.com/gideonshaked/dotfiles && cd dotfiles && ./installA minimal installation intended primarily for headless linux servers. Installs a portable bash config (prompt, aliases, functions), SSH config, Claude Code + ccstatusline, and git aliases without overwriting the existing shell config.
git clone https://github.com/gideonshaked/dotfiles && cd dotfiles && ./install --minimalβββ bin <- Personal scripts (s, dotfiles, git-nuke, sshkey, claude-validate)
βββ claude <- Claude Code settings, ccstatusline config, and claude-skills submodule
βββ clang <- clang-format and clangd config
βββ git <- Git configuration files (aliases, custom formatting, etc.)
βββ manifest <- Brewfile
βββ ssh <- SSH config file
βββ term <- Shell configuration (zsh, bash, starship)
βββ vscode <- VS Code configuration and extensions list
The claude/claude-skills submodule is a private repo containing my global CLAUDE.md and skills.
The install script handles not being able to access the skills repo gracefully, so it shouldn't be an issue if you install this repo and you're not me ;).
The s script is an SSH wrapper that uses the Kitty SSH kitten when available and falls back to plain ssh otherwise. It supports optional dotfiles management on remote hosts:
s host # Just SSH (default)
s --install-dotfiles host # Install dotfiles (or update if present)
s --reinstall-dotfiles host # Delete and reinstall from scratch
s --update-dotfiles host # Pull latest and re-run installAfter install, use the dotfiles utility:
dotfiles update # Pull latest changes and run install
dotfiles update --minimal # Same, but minimal install
dotfiles brewfile # Update Homebrew package manifest
dotfiles dotbot # Update Dotbot submodule
dotfiles skills # Update Claude skills submoduleThese dotfiles were inspired by Anish Athalye's dotfiles, and this repository uses Dotbot for installation.