summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.tldrrc3
-rw-r--r--.zshrc1
-rwxr-xr-xsetup.sh3
3 files changed, 7 insertions, 0 deletions
diff --git a/.tldrrc b/.tldrrc
new file mode 100644
index 0000000..fcd5628
--- /dev/null
+++ b/.tldrrc
@@ -0,0 +1,3 @@
+{
+ "skipUpdateWhenPageNotFound": true
+}
diff --git a/.zshrc b/.zshrc
index 63423ac..515802a 100644
--- a/.zshrc
+++ b/.zshrc
@@ -27,6 +27,7 @@ alias gpull='git pull'
alias dotfiles='cd ~/.dotfiles'
alias dl='cd ~/Downloads'
alias update='brew update && brew upgrade && brew autoremove && brew cleanup'
+alias help='tldr'
# Node version manager
export NVM_DIR="$HOME/.nvm"
diff --git a/setup.sh b/setup.sh
index 117861b..1d91bc9 100755
--- a/setup.sh
+++ b/setup.sh
@@ -55,6 +55,9 @@ if [ ! -e "$HOME/.newsboat" ]; then
ln -s "$dotfiles/.newsboat" "$HOME/.newsboat"
fi
+# Publish config of tldr
+[ -e "$HOME/.tldrrc" ] || ln -s "$dotfiles/.tldrrc" "$HOME/.tldrrc"
+
# Install verion manager for node.js
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash