We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3addebb commit 0b6ecf7Copy full SHA for 0b6ecf7
clean_files.txt
@@ -28,6 +28,10 @@ lint_clean_files.sh
28
themes/90210
29
themes/powerline
30
31
+# plugins
32
+#
33
+plugins/available/basher.plugin.bash
34
+
35
# completions
36
#
37
completion/available/cargo.completion.bash
plugins/available/basher.plugin.bash
@@ -0,0 +1,15 @@
1
+cite about-plugin
2
+about-plugin 'initializes basher, the shell package manager'
3
4
+# https://github.com/basherpm/basher
5
6
+if ! _command_exists basher; then
7
+ if [[ -x "$HOME/.basher/bin/basher" ]]; then
8
+ pathmunge "$HOME/.basher/bin"
9
+ else
10
+ _log_warning 'basher not found'
11
+ return 0
12
+ fi
13
+fi
14
15
+eval "$(basher init - bash)"
0 commit comments