{"id":15963000,"url":"https://github.com/mamoruds/dotfiles","last_synced_at":"2026-04-30T15:32:43.112Z","repository":{"id":111827446,"uuid":"587212212","full_name":"MamoruDS/dotfiles","owner":"MamoruDS","description":"Configuration files for git, neovim, tmux and zsh.","archived":false,"fork":false,"pushed_at":"2025-05-28T12:56:08.000Z","size":296,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-28T13:41:29.616Z","etag":null,"topics":["dotfiles"],"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/MamoruDS.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}},"created_at":"2023-01-10T08:14:28.000Z","updated_at":"2025-05-28T12:56:11.000Z","dependencies_parsed_at":"2023-06-04T02:00:33.075Z","dependency_job_id":"7434bb9a-ae0c-4121-9734-8c5009d38a14","html_url":"https://github.com/MamoruDS/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MamoruDS/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MamoruDS","download_url":"https://codeload.github.com/MamoruDS/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MamoruDS%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32469344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: 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"],"created_at":"2024-10-07T16:22:15.118Z","updated_at":"2026-04-30T15:32:43.095Z","avatar_url":"https://github.com/MamoruDS.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\n## Install\n\nThis repository using [dotter](https://github.com/SuperCuber/dotter#installation) to manage dotfiles.\n\n-   Install dotter:\n\n    ```shell\n    cargo install dotter\n    ```\n\n    or install from github [release](https://github.com/SuperCuber/dotter/releases)\n\n-   Clone this repository to any directory:\n\n    ```shell\n    git clone --recursive git@github.com:MamoruDS/dotfiles.git\n    ```\n\n-   Deploy with dotter:\n    [config](https://github.com/SuperCuber/dotter/wiki/Setup-and-Configuration) your local file in `.dotter/local.toml`\n\n    ```toml\n    # an example of local.toml\n    # valid packages and variables can be found in .dotter/global.toml\n    packages = [\"zsh\", \"tmux\"]\n\n    [files]\n    zshrc = \"~/.zshrc.dot\"\n\n    [variables]\n    use_nerdfont = 1 # if you have nerdfont installed\n    zsh_plugin_autosuggestions = 1\n    ```\n\n    and using `dotter` to deploy dotfiles.\n\n    ```\n    cd dotfiles\n    dotter -v\n    ```\n\n### Requirements\n\n-   [fzf](https://github.com/junegunn/fzf#installation) or [skim](https://github.com/lotabout/skim) is required for using `zsh`'s plugin [zsh-history-fuzzy-search](https://github.com/MamoruDS/zsh-history-fuzzy-search)\n-   [fzf](https://github.com/junegunn/fzf#installation)\n    is required for using `zsh`'s plugin [fzf-tab](https://github.com/Aloxaf/fzf-tab)\n-   [file](https://www.darwinsys.com/file/)\n    for using preview utils in [fzf-tab](https://github.com/Aloxaf/fzf-tab)\n\n-   [tpm](https://github.com/tmux-plugins/tpm) is required for using package `tmux` with plugins (disabled by default)\n\n    ```shell\n    git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm\n    ```\n\n    and enable plugins for `tmux` package in your dotter local config\n\n    ```toml\n    # in your local.toml\n    [variables]\n    tmux_using_plugins = 1\n    ```\n\n## Usage\n\nIf you have installed the dotfiles with package `zsh`, you can easily keep your dotfiles up-to-date using the update-dotfiles function. This function searches for the root of your dotfiles repository at `~/.dotfiles`, and looks for the local config toml file at `~/.dotfiles/.dotter/local.toml`. However, you can customize these locations using environment variables specific to your setup, as follows:\n\n```shell\n# specific path of your dotter binary; default: dotter\nDOTTER_BIN=~/bin/dotter\n\n# root of dotfiles repo; default: ~/.dotfiles\nDOTFILES_ROOT=~/dotfiles\n\n# location of the local config; default: $DOTFILES_ROOT/.dotter/local.toml\nDOTFILES_LOCAL=~/.dot.local.toml\n\n# update dotfiles without pull from remote; default:\nDOTFILES_IGNORE_REMOTE=1\n```\n\nTo use the update function, simply run it from your shell:\n\n```shell\nupdate-dotfiles\n# or with force; equivalent dotter -f\nupdate-dotfiles -f\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmamoruds%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmamoruds%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmamoruds%2Fdotfiles/lists"}