{"id":22568237,"url":"https://github.com/vandlj/warpsetup","last_synced_at":"2025-10-14T20:37:21.510Z","repository":{"id":248362829,"uuid":"828472082","full_name":"VandlJ/WarpSetup","owner":"VandlJ","description":"The repository `WarpSetup` provides a comprehensive guide for setting up Warp Terminal on a Macbook with a personalized configuration, including installation of Oh-My-Zsh, the Powerlevel10k theme, and additional plugins like Zsh Syntax Highlighting and Zsh Autosuggestions.","archived":false,"fork":false,"pushed_at":"2024-07-16T05:42:16.000Z","size":3,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T20:37:20.354Z","etag":null,"topics":["developer-tools","macos-setup","oh-my-zsh","ohmyzsh","powerlevel10k","productivity","shell-scripting","terminal","terminal-configuration","terminal-customization","warp","warp-terminal","warp-theme","zsh-plugin"],"latest_commit_sha":null,"homepage":"","language":null,"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/VandlJ.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}},"created_at":"2024-07-14T08:56:32.000Z","updated_at":"2025-10-07T09:12:26.000Z","dependencies_parsed_at":"2024-07-14T11:23:56.383Z","dependency_job_id":"ea658579-ad99-4b79-a267-e04904e794b5","html_url":"https://github.com/VandlJ/WarpSetup","commit_stats":null,"previous_names":["vandlj/warpsetup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/VandlJ/WarpSetup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VandlJ%2FWarpSetup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VandlJ%2FWarpSetup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VandlJ%2FWarpSetup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VandlJ%2FWarpSetup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VandlJ","download_url":"https://codeload.github.com/VandlJ/WarpSetup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VandlJ%2FWarpSetup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020904,"owners_count":26086949,"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","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"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":["developer-tools","macos-setup","oh-my-zsh","ohmyzsh","powerlevel10k","productivity","shell-scripting","terminal","terminal-configuration","terminal-customization","warp","warp-terminal","warp-theme","zsh-plugin"],"created_at":"2024-12-08T00:12:09.522Z","updated_at":"2025-10-14T20:37:21.480Z","avatar_url":"https://github.com/VandlJ.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Warp Terminal Setup Guide\n\nThis guide will help you set up [Warp Terminal](https://www.warp.dev) on your Macbook with a personalized configuration that includes several useful plugins. Follow the steps below to get started.\n\n## Step 1: Install a Nerd Font\n\nFirst, you need to install a font that supports special icons. You can choose from a variety of fonts at [Nerd Fonts](https://www.nerdfonts.com/font-downloads). For example, you can download and install \"Hack Nerd Font\".\n\n## Step 2: Install Oh-My-Zsh\n\nInstall [Oh-My-Zsh](https://ohmyz.sh/#install) using one of the following commands:\n\nVia curl:\n```sh\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n```\n\nVia wget:\n```sh\nsh -c \"$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)\"\n```\n\n## Step 3: Install Powerlevel10k Theme\n\nClone the [Powerlevel10k](https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#oh-my-zsh) repository:\n```sh\ngit clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k\n```\n\nOpen your `.zshrc` file with a text editor (nvim, nano, etc.) and set the theme:\n\n```sh\n~/.zshrc\nnano .zshrc\n```\n\n```sh\nZSH_THEME=\"powerlevel10k/powerlevel10k\"\n```\n\nAfter making changes to .zshrc, source the file:\n```sh\nsource .zshrc\n```\n\nA configuration wizard should start automatically. If not, run:\n```sh\np10k configure\n```\n\n## Step 4: Install Additional Oh-My-Zsh Plugins\n\n### Zsh Syntax Highlighting\n\nClone the [Zsh syntax highlighting](https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md) plugin repository:\n```sh\ngit clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting\n```\n### Zsh Autosuggestions\n\nClone the [Zsh autosuggestions](https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md#oh-my-zsh) plugin:\n```sh\ngit clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions\n```\n\nEdit your .zshrc file to include these plugins:\n```sh\nplugins=(git zsh-syntax-highlighting zsh-autosuggestions)\n```\n\nSource the .zshrc file again:\n```sh\nsource .zshrc\n```\n\n## Step 5: Install Colorls\n\nInstall the [colorls](https://github.com/athityakumar/colorls?tab=readme-ov-file#installation) plugin using `gem`:\n```sh\nsudo gem install colorls\n```\n\nIf you encounter error that looks like this:\n```sh\nERROR:  Error installing colorls:\n\tThe last version of public_suffix (\u003e= 2.0.2, \u003c 7.0) to support your Ruby \u0026 RubyGems was 5.1.1. Try installing it with `gem install public_suffix -v 5.1.1` and then running the current command again\n\tpublic_suffix requires Ruby version \u003e= 3.0. The current ruby version is 2.6.10.210.\n```\n\nTry solving it by updating `public_suffix` with this command:\n```sh\nsudo gem install public_suffix -v 5.1.1\n```\n\nThen re-run the installation of colorls:\n```sh\nsudo gem install colorls\n```\n\nSet an alias for colorls by adding the following line to your .zshrc file:\n```sh\nalias ls='colorls'\n```\n\nSource the .zshrc file one last time:\n```sh\nsource .zshrc\n```\n\n## Conclusion\n\nAfter completing these steps, you should have a fully configured Warp Terminal with the best settings and plugins. Enjoy your new setup!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvandlj%2Fwarpsetup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvandlj%2Fwarpsetup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvandlj%2Fwarpsetup/lists"}