{"id":15685338,"url":"https://github.com/robertpeteuil/dotfiles","last_synced_at":"2025-05-07T17:02:22.841Z","repository":{"id":286703343,"uuid":"960570457","full_name":"robertpeteuil/dotfiles","owner":"robertpeteuil","description":"Cross platform shell configuration \"dotfiles\" - settings, aliases and utilities","archived":false,"fork":false,"pushed_at":"2025-04-29T18:43:49.000Z","size":193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-29T19:32:54.656Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robertpeteuil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-04T17:01:08.000Z","updated_at":"2025-04-29T18:43:53.000Z","dependencies_parsed_at":"2025-04-29T19:30:43.589Z","dependency_job_id":"80ef47af-d860-4bed-8780-6f1cd1f568d5","html_url":"https://github.com/robertpeteuil/dotfiles","commit_stats":null,"previous_names":["robertpeteuil/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertpeteuil%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertpeteuil%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertpeteuil%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertpeteuil%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robertpeteuil","download_url":"https://codeload.github.com/robertpeteuil/dotfiles/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252922110,"owners_count":21825633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aliases","bash-configuration","bash-prompt","bashrc","dotfiles","environment-configuration"],"created_at":"2024-10-03T17:24:54.097Z","updated_at":"2025-05-07T17:02:22.751Z","avatar_url":"https://github.com/robertpeteuil.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\n## Shell configuration \"dotfiles\" - cross platform settings, aliases and script\n\n----\n\nQuickly and simply install settings, aliases and functions for Bash and Zsh on Linux, macOS, and WSL Shells.\n\n## Settings\n\nThe following configs are installed:\n\n- zsh - configures zsh znap plugin manager, prompt, plugins, aliases\n- bash - configured bash settings, bash git prompt\n- git - general configuration, aliases, colorization, user settings\n\n## Installation\n\nVerify and run downloader script to download/install\n\n``` bash\n$ curl -LO https://raw.githubusercontent.com/robertpeteuil/dotfiles/main/downloader\n\n# review script - e.g. cat downloader\n\n$ chmod +x downloader\n$ ./downloader\n```\n\nThe downloader script performs the following tasks:\n\n- Install `git` if not installed (required to clone the `dotfiles` repo)\n- Clones `dotfiles` repo into the `~/.dotfiles` directory (configurable)\n- Clones `dotfiles-private` repo into the `~/.dotfiles/private` directory (configurable)\n- executes included `install` script\n\nInstall script performs actions from `install.conf.yaml`\n\n- ZSH\n  - symlinks `zshenv` to $HOME\n- Bash\n  - symlinks `bashrc` and `bash_profile` to $HOME\n  - symlinks `bash-git-prompt` and `grc` for bash prompt/colorization\n- Git config\n  - symlinks `gitconfig`, `gitignore_global`\n  - symlinks `gitconfig_ssh` (url specific overrides)\n\n## Load details\n\n### ZSH dotfiles load process\n\n- `.zshenv` read from $HOME, sets $ZDOTDIR\n- `.zshrc` read from $ZDOTDIR directory\n- `.zshrc` sources the following\n  - `$HOME/.cache/p10k-insta-prompt` if present\n  - files in `$ZDOTDIR/rc.d`\n    - 01 - history\n    - 02 - znap install\n    - 04 - Env and Path\n    - 06 - prompt setup\n    - 08 - plugins\n      - `marlonrichert/zcolors`           # colors for completions and git\n      - `zsh-users/zsh-autosuggestions`   # Inline suggestions\n      - `zdharma-continuum/fast-syntax-highlighting`\n      - `zsh-users/zsh-completions`\n      - `marlonrichert/zsh-autocomplete`  # type-ahead completion\n    - 10 - options\n    - 12 - keys\n    - 20 - zsh specific aliases\n      - configure zsh dirstack, reload, zshrc edits, showcolors, zmv\n  - sources `DOTFILES/shell/includes` which includes\n    - `DOTFILES/shell/aliases` - cross-shell (used by both bash \u0026 zsh)\n    - `DOTFILES/shell/functions` - cross-shell (used by both bash \u0026 zsh)\n    - optional files\n\n### Bash dotfiles load process\n\n- `.bash_profile` - loaded by bash login shell\n  - sources `.bashrc`\n- `.bashrc` - loaded by non-login shells (unless sourced explicitly)\n  - exits if non-interactive or not bash\n  - sets paths\n  - sets prompt, colors\n  - configured brew PATH\n  - configures GRC\n  - display linux reboot message, if appropriate\n  - sources `DOTFILES/shell/includes` which includes\n    - `DOTFILES/shell/aliases` - cross-shell (used by both bash \u0026 zsh)\n    - `DOTFILES/shell/functions` - cross-shell (used by both bash \u0026 zsh)\n    - optional files\n\n## Customization\n\nCustomize this repo by forking it and customizing to your needs.\n\n- This repo uses [dotbot](https://github.com/anishathalye/dotbot) bootstrap\n- [Configuration Info](https://github.com/anishathalye/dotbot#configuration)\n- [Dotbot Wiki](https://github.com/anishathalye/dotbot/wiki)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertpeteuil%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertpeteuil%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertpeteuil%2Fdotfiles/lists"}