From 1676d9fca3f71573633330cbce241e89cbc61e5d Mon Sep 17 00:00:00 2001
From: Pascal Zarrad
Date: Tue, 26 Mar 2024 01:23:41 +0100
Subject: [PATCH] feat: add shell auto suggestions plugin
---
plugins/zsh-enhancements/plugin.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/plugins/zsh-enhancements/plugin.sh b/plugins/zsh-enhancements/plugin.sh
index 52c9731..7a2a56b 100644
--- a/plugins/zsh-enhancements/plugin.sh
+++ b/plugins/zsh-enhancements/plugin.sh
@@ -39,3 +39,8 @@ apply_plugin "zsh-users/zsh-autosuggestions"
# from history and then press chosen keys, such as the UP and
# DOWN arrows, to cycle through matches.
apply_plugin "zsh-users/zsh-history-substring-search"
+
+# This plugin adds autocompletion to further speed up command
+# line work. Together with autosuggestions, it makes typing
+# commands a breeze.
+apply_plugin "marlonrichert/zsh-autocomplete"