{"id":28456911,"url":"https://github.com/timnekk/dotfiles","last_synced_at":"2025-06-30T00:32:17.167Z","repository":{"id":294320795,"uuid":"986586749","full_name":"TimNekk/dotfiles","owner":"TimNekk","description":"My personal dotfiles","archived":false,"fork":false,"pushed_at":"2025-05-23T10:18:53.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T23:09:28.229Z","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/TimNekk.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-05-19T20:43:24.000Z","updated_at":"2025-05-23T12:14:13.000Z","dependencies_parsed_at":"2025-05-19T22:39:18.912Z","dependency_job_id":"625ddb86-010b-4620-8289-a4a2c4c28063","html_url":"https://github.com/TimNekk/dotfiles","commit_stats":null,"previous_names":["timnekk/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TimNekk/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimNekk%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimNekk%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimNekk%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimNekk%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimNekk","download_url":"https://codeload.github.com/TimNekk/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimNekk%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262689560,"owners_count":23349133,"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":[],"created_at":"2025-06-06T23:09:33.134Z","updated_at":"2025-06-30T00:32:17.146Z","avatar_url":"https://github.com/TimNekk.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TimNekk's dotfiles\n\n## Auth to github\n\n```bash\nssh-keygen -t ed25519 -C \"herew26@gmail.com\"\nssh-add ~/.ssh/id_ed25519\ncat ~/.ssh/id_ed25519.pub\n```\n\nEnter SSH key in [GitHub Settings](https://github.com/settings/ssh/new)\n\n## oh-my-zsh\n\nInstall zsh\n\n```bash\nsudo apt install zsh -y\nchsh -s $(which zsh)\nexit\n```\n\nInstall oh-my-zsh\n\n```bash\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n```\n\n## dotfiles\n\n```bash\nsudo apt update\nsudo apt install stow -y\ngit clone https://github.com/TimNekk/dotfiles.git ~/dotfiles\ncd ~/dotfiles\nfind . -type f -exec rm -f ~/{} \\;\nstow .\ngit clone --depth=1 https://github.com/romkatv/powerlevel10k.git \"${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k\"\ngit clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions\ngit clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting\nomz reload\n```\n\n## just\n\n**Option 1:** On Ubuntu and Debian\n\n```bash\nwget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1\u003e /dev/null\necho \"deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)\" | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list\nsudo apt update\napt install just\n```\n\n**Option 2:** Using homebrew\n\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\necho \u003e\u003e ~/.zshrc\necho 'eval \"$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)\"' \u003e\u003e s~/.zshrc\neval \"$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)\"\nbrew install just\n```\n\n## goenv\n\n```bash\ngit clone https://github.com/go-nv/goenv.git ~/.goenv\necho 'export GOENV_ROOT=\"$HOME/.goenv\"' \u003e\u003e ~/.zshenv\necho 'export PATH=\"$GOENV_ROOT/bin:$PATH\"' \u003e\u003e ~/.zshenv\necho 'eval \"$(goenv init -)\"' \u003e\u003e ~/.zshenv\necho 'export PATH=\"$GOROOT/bin:$PATH\"' \u003e\u003e ~/.zshenv\necho 'export PATH=\"$PATH:$GOPATH/bin\"' \u003e\u003e ~/.zshenv\nomz reload\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimnekk%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimnekk%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimnekk%2Fdotfiles/lists"}