{"id":16345394,"url":"https://github.com/unclechu/tmuxrc","last_synced_at":"2026-04-28T23:39:04.876Z","repository":{"id":66007031,"uuid":"54147055","full_name":"unclechu/tmuxrc","owner":"unclechu","description":"My Tmux configs","archived":false,"fork":false,"pushed_at":"2024-02-18T23:20:29.000Z","size":84,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-27T22:20:44.767Z","etag":null,"topics":["bash","dotfiles","shell","tmux","tmuxrc","tpm"],"latest_commit_sha":null,"homepage":null,"language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unclechu.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":"2016-03-17T19:51:21.000Z","updated_at":"2022-06-30T01:21:15.000Z","dependencies_parsed_at":"2023-11-26T01:25:24.976Z","dependency_job_id":"eb2ea53c-a22c-4e20-9e34-340a7854e163","html_url":"https://github.com/unclechu/tmuxrc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Ftmuxrc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Ftmuxrc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Ftmuxrc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unclechu%2Ftmuxrc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unclechu","download_url":"https://codeload.github.com/unclechu/tmuxrc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239533066,"owners_count":19654617,"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":["bash","dotfiles","shell","tmux","tmuxrc","tpm"],"created_at":"2024-10-11T00:31:26.785Z","updated_at":"2025-10-06T09:03:19.487Z","avatar_url":"https://github.com/unclechu.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My tmux configuration\n\n## Usage\n\n### NixOS\n\n#### Using it in NixOS `configuration.nix`\n\nHere is an example of how it may look like in your `configuration.nix`:\n\n``` nix\n{ pkgs, ... }:\nlet\n  tmuxConfig = pkgs.callPackage (pkgs.fetchFromGitHub {\n    owner  = \"unclechu\";\n    repo   = \"tmuxrc\";\n    rev    = \"0000000000000000000000000000000000000000\";\n    sha256 = \"0000000000000000000000000000000000000000000000000000\";\n  }) {};\nin\n{\n  programs.tmux = {\n    enable = true;\n    extraConfig = tmuxConfig.config;\n  };\n\n  # This is optional. In case you need ‘tmuxsh’ script always available.\n  environment.systemPackages = [\n    tmuxConfig.tmuxsh\n  ];\n}\n```\n\n#### Run in a Nix Shell\n\n``` sh\nnix-shell --run tmux\n```\n\n### Other OS\n\n1. Clone this repo somewhere, say to `~/.my-tmux-config`:\n\n   ``` sh\n   git clone --recursive https://github.com/unclechu/tmuxrc.git ~/.my-tmux-config\n   ```\n\n1. Create `~/.tmux/plugins` directory:\n\n   ``` sh\n   mkdir -p ~/.tmux/plugins\n   ```\n\n1. Create symlink `~/.tmux/plugins/tpm` pointing to [tpm] directory\n   (Tmux Plugin Manager):\n\n   ``` sh\n   ln -s ~/.my-tmux-config/tpm ~/.tmux/plugins/tpm\n   ```\n\n1. Partially the configuration is provided by [apps/tmuxsh] script.\n   Add it to your `PATH` environment variable (it could be `.local/bin` for\n   instance, depends on your setup) but for this usage example we will manually\n   override `PATH`. Just make sure that this runs successfully:\n\n   ``` sh\n   ~/.my-tmux-config/apps/tmuxsh help\n   ```\n\n1. Either create a symlink `~/.tmux.conf` that points to [.tmux.conf] file:\n\n   ``` sh\n   ln -s ~/.my-tmux-config/.tmux.conf ~/.tmux.conf\n   ```\n\n   Or if you want to be able to add some local changes to the config create new\n   `~/.tmux.conf` file:\n\n   ``` sh\n   touch ~/.tmux.conf\n   ```\n\n   And include [.tmux.conf] in that file and add some local changes:\n\n   ``` tmux\n   source ~/.my-tmux-config/.tmux.conf\n   set -g prefix ^B\n   ```\n\n1. Run `tmux` (`PATH` is overridden for `tmuxsh` script):\n\n   ``` sh\n   PATH=~/.my-tmux-config/apps:$PATH tmux\n   ```\n\n   And install the plugins by pressing `prefix` (`Ctrl` + `b` by default) + `I`\n   (capital `i`, `Shift` + `i`)\n\n## License\n\n[Public Domain](LICENSE)\n\n## Author\n\nViacheslav Lotsmanov\n\n[.tmux.conf]: .tmux.conf\n[apps/tmuxsh]: apps/tmuxsh\n[tpm]: tpm\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclechu%2Ftmuxrc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funclechu%2Ftmuxrc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funclechu%2Ftmuxrc/lists"}