{"id":22683714,"url":"https://github.com/lucasng-dev/zsh-config","last_synced_at":"2026-04-09T02:31:37.590Z","repository":{"id":184214581,"uuid":"670852866","full_name":"lucasng-dev/zsh-config","owner":"lucasng-dev","description":"Zsh + Prezto + Starship","archived":false,"fork":false,"pushed_at":"2025-12-30T01:43:31.000Z","size":115,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-02T09:54:00.748Z","etag":null,"topics":["dotfiles","linux","prezto","shell","starship","terminal","zsh"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lucasng-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-26T01:56:38.000Z","updated_at":"2025-12-30T01:43:35.000Z","dependencies_parsed_at":"2023-07-27T14:27:42.877Z","dependency_job_id":"e21de993-47f3-4f67-9d6a-917ea99eb5c1","html_url":"https://github.com/lucasng-dev/zsh-config","commit_stats":null,"previous_names":["lucasng-dev/zsh-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lucasng-dev/zsh-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasng-dev%2Fzsh-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasng-dev%2Fzsh-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasng-dev%2Fzsh-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasng-dev%2Fzsh-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucasng-dev","download_url":"https://codeload.github.com/lucasng-dev/zsh-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasng-dev%2Fzsh-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31582605,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["dotfiles","linux","prezto","shell","starship","terminal","zsh"],"created_at":"2024-12-09T21:13:13.248Z","updated_at":"2026-04-09T02:31:37.563Z","avatar_url":"https://github.com/lucasng-dev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zsh config\n\nBasic [Zsh](https://www.zsh.org/) config, using [Prezto](https://github.com/sorin-ionescu/prezto) framework, [Starship](https://starship.rs/) prompt, and some extra [modules](lib/modules).\n\nThe prompt theme is based on [Nerd Font Symbols Preset](https://starship.rs/presets/nerd-font.html). The [FiraCode Nerd Font](https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode) is included, update the terminal app preferences to use it, otherwise the special icons/glyphs won't be displayed.\n\n## Installation\n\nChoose a folder _(e.g.: `~/.zsh`)_ and clone the repository:\n\n```shell\ngit clone https://github.com/lucasng-dev/zsh-config.git ~/.zsh\n```\n\nRun the installer:\n\n```shell\nzsh ~/.zsh/install.sh\n```\n\nThe installation process will update the `~/.zshenv` file, pointing to this project. Reopen the terminal and adjust the font preferences.\n\n## Update\n\nUse the following command/alias:\n\n```shell\n@zshup\n```\n\nAn alternative is to run manually a `git pull` on this project folder and re-run the `install.sh` script.\n\n## Uninstall\n\nUpdate the `~/.zshenv` file to remove the line that points to this project.\n\nUpdate the terminal app preferences to use a normal font.\n\nDelete the following folders:\n\n- `~/.zsh` _(folder where the project was cloned)_\n- `~/.local/share/fonts/nerd-fonts/fira-code` _(patched font on Linux)_\n- `~/Library/Fonts/nerd-fonts/fira-code` _(patched font on macOS)_\n\n## Custom shell scripts\n\nLocated at [`custom`](custom) directory, these local scripts, if existent, will be loaded in the following order:\n\n| User script file   | Usage                                                   | Loaded on              |\n| ------------------ | ------------------------------------------------------- | ---------------------- |\n| `.zshenv`          | Setup only, points to this project, keep it as is       | All executions         |\n| **`.zprofile`** ✅ | **Recommended**, e.g: environment variables and options | All executions         |\n| **`.zshrc`** ✅    | **Recommended**, e.g: aliases, functions                | Interactive shell only |\n| `.zpreztorc`       | If necessary, allows changes to Prezto config           | Interactive shell only |\n| `.zlogin`          | Unusual, interactive shell, after open                  | Interactive shell only |\n| `.zlogout`         | Unusual, interactive shell, before exit                 | Interactive shell only |\n\n### Extra shell scripts used by modules\n\n| User script file | Usage                         | Loaded on         |\n| ---------------- | ----------------------------- | ----------------- |\n| `.host`          | Script to provision host      | `@host --upgrade` |\n| `.box`           | Script to provision distrobox | `@box --upgrade`  |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasng-dev%2Fzsh-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucasng-dev%2Fzsh-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasng-dev%2Fzsh-config/lists"}