]> arthur.barton.de Git - ax-zsh.git/commitdiff
New "buku" plugin
authorAlexander Barton <alex@barton.de>
Tue, 5 Mar 2019 22:23:35 +0000 (23:23 +0100)
committerAlexander Barton <alex@barton.de>
Tue, 5 Mar 2019 22:23:35 +0000 (23:23 +0100)
plugins/buku/README.md [new file with mode: 0644]
plugins/buku/buku.zshrc [new file with mode: 0644]

diff --git a/plugins/buku/README.md b/plugins/buku/README.md
new file mode 100644 (file)
index 0000000..0db4237
--- /dev/null
@@ -0,0 +1,7 @@
+## buku
+
+Setup *buku*(1), a terminal-based bookmaks manager.
+
+### Command Aliases
+
+- `b`: `buku --suggest`
diff --git a/plugins/buku/buku.zshrc b/plugins/buku/buku.zshrc
new file mode 100644 (file)
index 0000000..1a723e8
--- /dev/null
@@ -0,0 +1,7 @@
+# AX-ZSH: Alex' Modular ZSH Configuration
+# buku.zshrc: Setup buku(1)
+
+# Make sure that "buku(1)" is installed
+(( $+commands[buku] )) || return
+
+alias b='buku --suggest --tacit'