{"id":21474639,"url":"https://github.com/pabsan-0/mlp","last_synced_at":"2026-04-13T22:32:51.037Z","repository":{"id":191608537,"uuid":"682550927","full_name":"pabsan-0/mlp","owner":"pabsan-0","description":"Portable shell configuration with sourceable dotfiles","archived":false,"fork":false,"pushed_at":"2023-09-25T12:21:22.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T07:44:55.135Z","etag":null,"topics":["bash","repos-devtools","shell","terminal"],"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/pabsan-0.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}},"created_at":"2023-08-24T12:17:22.000Z","updated_at":"2024-08-30T08:52:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"e304e215-478f-4fa4-9406-9adee864784e","html_url":"https://github.com/pabsan-0/mlp","commit_stats":null,"previous_names":["pabsan-0/my-little-prompt","pabsan-0/mlp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pabsan-0/mlp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabsan-0%2Fmlp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabsan-0%2Fmlp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabsan-0%2Fmlp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabsan-0%2Fmlp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pabsan-0","download_url":"https://codeload.github.com/pabsan-0/mlp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabsan-0%2Fmlp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31774028,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"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":["bash","repos-devtools","shell","terminal"],"created_at":"2024-11-23T10:24:24.235Z","updated_at":"2026-04-13T22:32:50.991Z","avatar_url":"https://github.com/pabsan-0.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My little prompt \n\nThis repo holds a minimalistic, sourceable bash environment packing custom configurations, aliases, completions... etc. Invoking this environment will NOT make any write change to your filesystem outside this directory.  \n\nStrongly inspired from [oh-my-bash](https://github.com/ohmybash/oh-my-bash).\n\n\n## Dependencies\n\nNot really dependencies, but tooling to be used:\n\n```\nsudo apt install  \\\n    tmux          \\\n    tmuxinator    \\\n    vim           \\\n    sudo          \\\n    ;\n```\n\n## Usage\n\nTo enter a subshell with all the packed tooling, simply run  `./mlp`. You may add the repo root to `$PATH` or symlink `mlp` into a `$PATH` dir for system-wide access.\n\nTo include any of the packed components in your current shell (no subshell), simply `source` them. In this case, you should have `$__MLP_PATH` set to the root of this repo.\n\n## Contents\n\n### Aliases\n\nUseful aliases with handy executables and preferred implementations. Source these files to enable them.\n\n### Completions\n\nUseful or faster bash-driven completions for several software. Some are new, some are faster than my system's default.  Source these files to enable them.\n\n### Config files\n\nA set of sourceable dotfiles, or configuration files, for my favourite software. Supported by aliases that replace the original commands and add a flag to pass custom config files.\n\n- Bash: holds a custom `.bashrc_extra` file with additional custom `.bashrc` lines. This file is simply sourced when `mlp` launches. Source yourself for the same effect. For now, the systems default `.bashrc` is already run from `mlp`, hence the prefix `_extra`. \n- Tmux: passes a custom `.tmux.conf` as argument to `tmux` \n- Vim: passes a custom `.vimrc` as argument to `tmux`. Holds a dir to store swapfiles and other cache.\n\nSource `mlp.configs.sh` to enable these.\n\n### Lib\n\nA \"core\" library for bash `mlp`. These utilities are meant for an `mlp` user at the terminal, but also for the scripts, aliases and infrastructure of this repo. Still considering what fits in here and what should be in a `scripts/` dir.\n\n- `mlp.paths.sh`: Path utils such as find a file up or report path of current running script.\n- `mlp.source.sh` Source utils such as `source` all files in this dir or `source` with multiple args.\n- `mlp.cli.sh`: Cli utils. Work in progress\n- `mlp.shopt.sh`: Shell configuration. Work in progress\n\nSource these to enable each.\n\n### Templates\n\nA more isolated tool to copy several template files to `$PWD`. Dump your most common file structures here.\n\nSource `mlp.templates.sh` to enable.\n\n### Themes\n\nAesthetics and utilitities for your command line prompt. For now, only a default theme which simply adds `(mlp)` to your system prompt is included.\n\nSource `mlp.themes.sh` to enable an util to switch theme, or simply source one by looking it up.\n\n## Diving deeper\n\n- https://github.com/ohmyzsh/ohmyzsh\n- https://github.com/ohmybash/oh-my-bash\n- https://github.com/Bash-it/bash-it\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpabsan-0%2Fmlp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpabsan-0%2Fmlp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpabsan-0%2Fmlp/lists"}