{"id":15770102,"url":"https://github.com/jtiala/dotfiles","last_synced_at":"2025-07-05T09:06:06.646Z","repository":{"id":39006400,"uuid":"169390058","full_name":"jtiala/dotfiles","owner":"jtiala","description":"⚙️ My dotfiles","archived":false,"fork":false,"pushed_at":"2024-10-03T05:40:55.000Z","size":85,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-21T03:42:45.196Z","etag":null,"topics":["git","hyper","tmux","vim","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/jtiala.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}},"created_at":"2019-02-06T10:39:19.000Z","updated_at":"2024-10-03T05:40:58.000Z","dependencies_parsed_at":"2023-11-20T12:25:52.387Z","dependency_job_id":"fc050680-3537-4e73-a6c9-e64d01658f73","html_url":"https://github.com/jtiala/dotfiles","commit_stats":{"total_commits":127,"total_committers":1,"mean_commits":127.0,"dds":0.0,"last_synced_commit":"e829e374e8cda7ffe2d7b4e1c5c8c249b3fcd0ac"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jtiala/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtiala%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtiala%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtiala%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtiala%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jtiala","download_url":"https://codeload.github.com/jtiala/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtiala%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263715326,"owners_count":23500242,"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":["git","hyper","tmux","vim","zsh"],"created_at":"2024-10-04T14:22:00.622Z","updated_at":"2025-07-05T09:06:06.625Z","avatar_url":"https://github.com/jtiala.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⚙️ My dotfiles\n\n## Includes dotfiles for\n\n- [Git][git]\n- [tmux][tmux]\n- [Vim][vim]\n- [ZSH][zsh] with [Prezto][prezto] configuration framework\n- [direnv][direnv]\n\n## Installation\n\n### macOS\n\n- Install [Homebrew][homebrew]\n\n- Install dependencies\n\n      brew install coreutils git tmux vim zsh direnv\n      brew tap homebrew/cask-fonts\n      brew install --cask font-victor-mono\n\n- Set ZSH as default shell\n\n      chsh -s /bin/zsh\n\n- Clone this repository to `~/.dotfiles`\n\n      git clone --recursive git@github.com:jtiala/dotfiles.git ~/.dotfiles\n\n- Run install script\n\n      ~/.dotfiles/scripts/install.sh\n\n- Set up Node with nvm\n\n      brew install nvm\n      nvm install --lts\n      node -v\n\n- Set up latest Java with jenv\n\n      brew install jenv openjdk\n      jenv add /opt/homebrew/Cellar/openjdk/[INSTALLED VERSION]\n      ln -s ~/.jenv/versions/[INSTALLED MAJOR VERSION].0 ~/.jenv/versions/[INSTALLED MAJOR VERSION]\n      jenv global [INSTALLED MAJOR VERSION]\n      java -version\n\n- Set up older Java with jenv\n\n      brew install jenv openjdk@11\n      jenv add /opt/homebrew/Cellar/openjdk@11/[INSTALLED VERSION]\n      ln -s ~/.jenv/versions/11.0 ~/.jenv/versions/11\n\n- Set up Python with pyenv\n\n      brew install pyenv pyenv-virtualenv\n      pyenv install -l\n      pyenv install [LATEST 3.x.x]\n      pyenv install [LATEST 2.x.x]\n      pyenv global [INSTALLED 3.x.x]\n      pyenv global [INSTALLED 2.x.x]\n      python --version\n      python3 --version\n      python2 --version\n\n- Set up Ruby with rbenv\n\n      brew install rbenv ruby-build\n      rbenv install -l\n      rbenv install [LATEST VERSION]\n      rbenv global [INSTALLED VERSION]\n      ruby -v\n\n### Debian \u0026 Ubuntu\n\n- Install dependencies\n\n      sudo apt-get install software-properties-common dirmngr\n      sudo apt-get update\n      sudo apt-get install git tmux vim zsh\n\n- Set ZSH as default shell\n\n      chsh -s $(which zsh)\n\n- Clone this repository to `~/.dotfiles`\n\n      git clone --recursive https://github.com/jtiala/dotfiles.git ~/.dotfiles\n\n- Run install script\n\n      ~/.dotfiles/scripts/install.sh\n\n## Make it your own!\n\nFeel free to fork this repo and base your dotfiles on my setup. Be sure to change your git name and email at `git/.gitconfig` and make your own fork of [Prezto][prezto].\n\n[git]: https://git-scm.com\n[tmux]: https://github.com/tmux/tmux/wiki\n[vim]: https://www.vim.org\n[zsh]: http://www.zsh.org\n[prezto]: https://github.com/sorin-ionescu/prezto\n[homebrew]: https://brew.sh\n[direnv]: https://direnv.net\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtiala%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjtiala%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtiala%2Fdotfiles/lists"}