aboutsummaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
authorMiquel Sabaté <mikisabate@gmail.com>2014-11-17 08:14:32 +0100
committerMiquel Sabaté <mikisabate@gmail.com>2014-11-17 08:14:32 +0100
commit0dc454e2386758dd838fd3fd09fa3ceed1f13fc1 (patch)
tree1990b8d8f10e16abb802120042b9afc9f078ad7c /bashrc
parent6a4cb0e50729cd594b3c72e460985e700f0906b8 (diff)
downloaddotfiles-0dc454e2386758dd838fd3fd09fa3ceed1f13fc1.tar.gz
dotfiles-0dc454e2386758dd838fd3fd09fa3ceed1f13fc1.zip
bash: added the `td` utility in my bashrc.
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index bb899ce..b95cd19 100644
--- a/bashrc
+++ b/bashrc
@@ -82,6 +82,11 @@ source $HOME/.review_completion.sh
source $HOME/.g.sh
source $HOME/.gcompletion.sh
+# The td utility. See: https://github.com/mssola/td
+if [ -f $HOME/.tdcompletion.sh ]; then
+ source $HOME/.tdcompletion.sh
+fi
+
# Generates a PDF version of the manual of the given command.
function manpdf() {
man -t "$1" | ps2pdf - "$1.pdf"