Skip to content

Commit

Permalink
Spelling corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseMRT2004 authored Apr 25, 2024
1 parent d4b7a4d commit 135a135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit 135a135

Please sign in to comment.