{"id":26671255,"url":"https://github.com/faizmokh/dotfiles","last_synced_at":"2026-04-08T18:31:38.438Z","repository":{"id":91859470,"uuid":"144975683","full_name":"faizmokh/dotfiles","owner":"faizmokh","description":"My 💻's dotfiles ","archived":false,"fork":false,"pushed_at":"2024-06-14T02:19:44.000Z","size":55,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T23:49:46.062Z","etag":null,"topics":["dotfiles","hammerspoon","vim","vundle"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/faizmokh.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":"2018-08-16T10:55:20.000Z","updated_at":"2024-06-14T02:19:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"51f24f0b-7d0e-4662-b649-15518625e396","html_url":"https://github.com/faizmokh/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/faizmokh/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faizmokh%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faizmokh%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faizmokh%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faizmokh%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faizmokh","download_url":"https://codeload.github.com/faizmokh/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faizmokh%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31568598,"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":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","hammerspoon","vim","vundle"],"created_at":"2025-03-25T23:49:48.935Z","updated_at":"2026-04-08T18:31:38.417Z","avatar_url":"https://github.com/faizmokh.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# · \n\nThere's many like this but this is mine.\n\n## Set up dotfiles on a new machine\n\n1. Install [Brew][1] package manager\n\n```\n/usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\n```\n\n2. Install `git`\n\n```\nbrew install git\n```\n\n3. Add the following `alias` in your `.bashrc`.\n\n```\nalias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'\n```\n\n4. Add `.cfg` in your global `.gitignore` to avoid recursion issue when cloning this repository.\n\n```\necho \".cfg\" \u003e\u003e ~/.gitignore\n```\n\n5. Clone this repository\n\n```\ngit clone --bare git@github.com:faizmokh/dotfiles.git $HOME/.cfg\n```\n\n6. Define `alias` for current scope\n\n```\nalias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'\n```\n\n7. Checkout the content from repository to your `$HOME`. If there's any issue, simply checkout the working files.\n\n```\nconfig checkout\n```\n\n8. Set `showUntrackedFiles` to `no`\n\n```\nconfig config --local status.showUntrackedFiles no\n```\n\n9. Now, you can use `config` like how you normally use `git`. Eg:\n\n```\nconfig status\nconfig add .vimrc\nconfig commit -m \"Add vimrc\"\nconfig add .bashrc\nconfig commit -m \"Add bashrc\"\nconfig push\n```\n\n## If there's a file permissions issue\n\n```\nsudo chown -R `whoami` /usr/local/*\nsudo chown -R `whoami` /usr/local/\n```\n\n## To turn of brew analytics\n\n```\nbrew analytics off\n```\n\n## To change screenshots locations\n\n```\ntouch ~/Documents/screenshots\ndefaults write com.apple.screencapture location ~/Documents/screenshots\n```\n\n## Install apps define in `.Brewfile`\n\nTo install, run the following in `$HOME` directory:\n\n```\nbrew bundle --global\n```\n\n## Set up [Vundle][2]\n\nVundle is a plugin manager for vim. To set it up, run the following:\n\n```\ngit clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim\n```\n\nLaunch vim and run `:PluginInstall`\n\n### References\n\nIf something fucks up, simply refer to the original article\nby [Nicola Paolucci][3] to debug it yourself.\n\n[1]:https://brew.sh/\n[2]:https://github.com/VundleVim/Vundle.vim\n[3]:https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaizmokh%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaizmokh%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaizmokh%2Fdotfiles/lists"}