diff options
| -rw-r--r-- | .tldrrc | 3 | ||||
| -rw-r--r-- | .zshrc | 1 | ||||
| -rwxr-xr-x | setup.sh | 3 |
3 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,3 @@ +{ + "skipUpdateWhenPageNotFound": true +} @@ -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" @@ -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 |
