From 135a1357e1112c91864433cd2cd2470e3414f98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20M=2E=20Taveras?= Date: Wed, 24 Apr 2024 23:59:53 -0400 Subject: [PATCH] Spelling corrections --- plugins/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/README.md b/plugins/README.md index 12d1e902f..3c262a031 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -1,8 +1,8 @@ -### Oh My Bash: Enhancing Your Development Experience +# Oh My Bash: 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.**_ +_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. @@ -18,7 +18,7 @@ plugins=(git bundler osx rake ruby) 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: ```bash -[ "$SSH_TTY" ] && plugins+=(tmux-autoattach) +[ [ $SSH_TTY ] ] && plugins+=(tmux-autoattach) ``` By leveraging these plugins, you can streamline your workflow and tackle coding challenges with greater efficiency.