oh-my-bash/plugins
José M. Taveras f354eb1734
plugins: Add README.md (#554)
Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
2024-04-28 12:37:20 +09:00
..
ansible Feature to connect over vagrant servers 2022-07-13 22:34:15 +02:00
aws refactor: Normalize shebang of scripts to source 2022-01-15 19:00:35 +09:00
bash-preexec plugins/bash-preexec: Add loader 2022-10-02 11:21:06 +09:00
bashmarks plugins/bashmarks: Change style of the command list 2024-02-21 19:54:59 +09:00
battery battery.plugin: Refactor 2023-04-09 00:27:34 +09:00
brew style: Remove trailing whitespace and add missing final newlines 2023-04-16 17:43:09 +09:00
bu refactor: Normalize shebang of scripts to source 2022-01-15 19:00:35 +09:00
chezmoi feat: Add {completions,plugins}/chezmoi (#477) 2023-09-23 18:00:15 +09:00
fasd global: Switch the function-declarations to avoid unexpected alias expansions 2023-02-10 00:38:56 +09:00
gcloud plugins: Add "gcloud" plugin (#386) 2023-02-05 22:24:25 +09:00
git plugins/git: add documentation (#550) 2024-04-09 13:28:54 +09:00
goenv refactor: Normalize shebang of scripts to source 2022-01-15 19:00:35 +09:00
golang style: Remove trailing whitespace and add missing final newlines 2023-04-16 17:43:09 +09:00
kubectl style: Remove trailing whitespace and add missing final newlines 2023-04-16 17:43:09 +09:00
npm style: Remove trailing whitespace and add missing final newlines 2023-04-16 17:43:09 +09:00
nvm lib/nvm: Update autoloader to keep up with the upstream (#506) 2023-12-12 13:36:17 +09:00
progress style: Remove trailing whitespace and add missing final newlines 2023-04-16 17:43:09 +09:00
pyenv style: Remove trailing whitespace and add missing final newlines 2023-04-16 17:43:09 +09:00
sdkman refactor: Normalize shebang of scripts to source 2022-01-15 19:00:35 +09:00
sudo plugins/sudo: Add toggle support (#434) 2023-04-10 09:27:04 +09:00
tmux-autoattach global: Switch the function-declarations to avoid unexpected alias expansions 2023-02-10 00:38:56 +09:00
vagrant plugins/vagrant: Ajdust styles 2022-07-14 06:04:13 +09:00
xterm plugins/xterm: Fix xterm plugin to make it work (#378) 2022-12-11 11:15:34 +09:00
zoxide refactor: Normalize shebang of scripts to source 2022-01-15 19:00:35 +09:00
README.md plugins: Add README.md (#554) 2024-04-28 12:37:20 +09:00

Oh-My-Bash Plugins: Enhancing Your Development Experience

"Oh My Bash won't make you a tenfold developer... but it might make you feel like one."

Embracing a suite of plugins can significantly boost your coding efficiency by automating repetitive tasks, thereby making them less monotonous and easier to execute.

What is a Plugin? A plugin is a type of software that augments the functionality of an existing program or system. These additions can range from simple to complex features and are intended to extend or customize the core functionality without modifying the codebase.

Plugin Enablement: Once you identify the plugins you wish to utilize with Oh My Bash, you'll need to enable them in the .bashrc file located in your $HOME directory. Open this file with your preferred text editor and specify the plugins you want to load. For instance:

plugins=(git bundler osx rake ruby)

Conditional Enablement: You may wish to control when or how plugins are activated. For instance, to ensure the tmux-autoattach plugin runs only in SSH sessions, you can employ a conditional statement checking for the $SSH_TTY variable. Make sure to remove the plugin from the main plugin list and use a conditional like this:

[[ $SSH_TTY ]] && plugins+=(tmux-autoattach)

By leveraging these plugins, you can streamline your workflow and tackle coding challenges with greater efficiency.

Plugin Description
ansible Configuration management tool used to automate the provisioning, configuration, and management of computer systems.
aws Tools for interacting with Amazon Web Services (AWS)
bash-preexec Tool allowing execution of commands before they are executed in Bash.
bashmarks Utility facilitating directory navigation via bookmarks in Bash.
battery Plugin related to monitoring and managing battery on computer systems.
brew Package manager for macOS and Linux facilitating software installation and management.
bu Insufficient information provided to give a precise description.
chezmoi Dotfile management tool enabling management of user environment configuration.
fasd Utility easing filesystem navigation through shortcuts and abbreviated commands.
gcloud Command-line tools for interacting with Google Cloud Platform (GCP).
git Distributed version control system for managing the history of changes in software projects.
goenv Tool for managing Go versions within a development environment.
golang The Go programming language, along with its tools and standard libraries.
kubectl Command-line tool for interacting with Kubernetes clusters.
npm Package manager for Node.js facilitating installation and management of project dependencies.
nvm Node.js version manager allowing easy switching between different Node.js versions.
progress Insufficient information provided to give a precise description.
pyenv Tool for managing multiple Python versions within a system.
sdkman Version and package manager for development tools such as Java, Kotlin, and Gradle.
sudo Utility for executing commands with superuser privileges on Unix and Unix-like systems.
tmux-autoattach Plugin related to session management in the tmux terminal multiplexer.
vagrant Tool for creating and managing virtual development environments.
xterm Terminal emulator for X Window systems providing a graphical user interface for accessing the command line.
zoxide Utility for quickly navigating the filesystem based on visited directory history.