{"id":19586389,"url":"https://github.com/epaew/tmux-erb-parser","last_synced_at":"2026-02-18T09:01:54.421Z","repository":{"id":52416880,"uuid":"137753055","full_name":"epaew/tmux-erb-parser","owner":"epaew","description":"A Tmux plugin for loading tmux.conf written in Ruby (eRuby) notation.","archived":false,"fork":false,"pushed_at":"2024-06-15T02:13:37.000Z","size":82,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-09T02:37:03.789Z","etag":null,"topics":["erb","ruby","tmux","tmux-configuration","tmux-erb-parser","tmux-plugins"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/epaew.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":"2018-06-18T13:08:02.000Z","updated_at":"2022-11-13T00:29:49.000Z","dependencies_parsed_at":"2025-05-23T16:19:45.668Z","dependency_job_id":"e3b87e3a-e128-4316-83ec-9f95d40fa09b","html_url":"https://github.com/epaew/tmux-erb-parser","commit_stats":{"total_commits":86,"total_committers":3,"mean_commits":"28.666666666666668","dds":0.03488372093023251,"last_synced_commit":"84d246c1d05423f8733b543679afb11bdb3f20b7"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/epaew/tmux-erb-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epaew%2Ftmux-erb-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epaew%2Ftmux-erb-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epaew%2Ftmux-erb-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epaew%2Ftmux-erb-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/epaew","download_url":"https://codeload.github.com/epaew/tmux-erb-parser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epaew%2Ftmux-erb-parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29574065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"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":["erb","ruby","tmux","tmux-configuration","tmux-erb-parser","tmux-plugins"],"created_at":"2024-11-11T07:59:36.389Z","updated_at":"2026-02-18T09:01:54.404Z","avatar_url":"https://github.com/epaew.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tmux ERB Parser\n[![Gem Version](https://badge.fury.io/rb/tmux-erb-parser.svg)](https://badge.fury.io/rb/tmux-erb-parser)\n[![Build Status](https://github.com/epaew/tmux-erb-parser/workflows/Run%20TestUnit/badge.svg)](https://github.com/epaew/tmux-erb-parser/actions?query=workflow%3A%22Run+TestUnit%22+branch%3A%22master%22)\n[![Maintainability](https://api.codeclimate.com/v1/badges/a4c67b3c8ba8e555d98f/maintainability)](https://codeclimate.com/github/epaew/tmux-erb-parser/maintainability)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/a4c67b3c8ba8e555d98f/test_coverage)](https://codeclimate.com/github/epaew/tmux-erb-parser/test_coverage)\n\nA Tmux plugin for loading tmux.conf written in Ruby (eRuby) notation.  \n[What's eRuby?](https://ruby-doc.org/stdlib/libdoc/erb/rdoc/ERB.html)\n\n## Requirements\n* bash\n    * For script execution.\n    * You can use whatever you like as the default shell.\n* git\n* ruby:\n    * 2.7 or higher is required.\n* tmux\n\n## How to use\n1. Create your `tmux.conf.erb` and place it.\n    * By default, tmux-erb-parser loads all `*.erb` files in `~/.config/tmux/`\n    * Or you can change the load path. (Please see below.)\n    * Sample configuration file:\n        * [sample.tmux.conf.erb](test/fixtures/sample.tmux.conf.erb)\n        * [sample.tmux.conf.yaml](test/fixtures/sample.tmux.conf.yaml)\n2. Install tmux-erb-parser and run tmux!\n\n### Install with tpm (Tmux Plugin Manager)\n* [Install tpm](https://github.com/tmux-plugins/tpm#installation)\n* Put this at the bottom of `~/.tmux.conf` (`$XDG_CONFIG_HOME/tmux/tmux.conf` works too, **but not your tmux.conf.erb!**):\n    ```tmux\n    setenv -g TMUX_CONF_EXT_PATH \"path/to/tmux.conf.erb\" # set your tmux.conf.erb's path\n    # Note: You can specify multiple files using glob expressions. This is parsed by bash.\n\n    set -g @plugin 'epaew/tmux-erb-parser'\n    set -g @plugin 'tmux-plugins/tpm'\n    # and list other plugins you want to install\n\n    # Initialize Tmux plugin manager (keep this line at the very bottom of tmux.conf)\n    run -b '~/.tmux/plugins/tpm/tpm'\n    ```\n\n* Run tmux and press `Prefix + I` to install plugins!\n\n### Install and configure with git/rubygems\n* Install:\n    * with git:\n        ```bash\n        git clone https://github.com/epaew/tmux-erb-parser ~/.tmux/plugins/tmux-erb-parser\n        ```\n    * from rubygems:\n        ```bash\n        gem install tmux-erb-parser\n        ```\n\n* Configure:\n    * Put this in `~/.tmux.conf` (`$XDG_CONFIG_HOME/tmux/tmux.conf` works too, **but not your tmux.conf.erb!**):\n        ```tmux\n        run -b 'path/to/bin/tmux-erb-parser --inline path/to/tmux.conf.erb'\n        ```\n\n## License\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepaew%2Ftmux-erb-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepaew%2Ftmux-erb-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepaew%2Ftmux-erb-parser/lists"}