From fc980718d65e66633bbb1610b9fe86384db73d6d Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Sat, 16 Nov 2019 10:46:56 +0100 Subject: [PATCH] add 3llo - CLI for Trello --- .gitignore | 1 + Gemfile | 2 ++ dot_scripts/bootstrap.sh | 1 + dot_zsh_aliases | 1 + dot_zshrc | 2 ++ 5 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 1421d02..0137ca1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.retry Gemfile.lock .newjiraissue +private_dot_3llo/config.sh diff --git a/Gemfile b/Gemfile index be82408..1ab571d 100644 --- a/Gemfile +++ b/Gemfile @@ -7,3 +7,5 @@ gem 'terjira' gem 'terraforming' #Previously installed using #sudo gem install -n /usr/local/bin asciidoctor-pdf --pre +# 3llo - CLI for Trello +gem '3llo' diff --git a/dot_scripts/bootstrap.sh b/dot_scripts/bootstrap.sh index 28a8d25..fa40f5f 100755 --- a/dot_scripts/bootstrap.sh +++ b/dot_scripts/bootstrap.sh @@ -52,6 +52,7 @@ ln -snf ~/Code/dotfiles/dot_zshrc.pre-oh-my-zsh ~/.zshrc.pre-oh-my-zsh ln -snf ~/Code/dotfiles/private_dot_ssh/config ~/.ssh/config ln -snf ~/Code/dotfiles/requirements.txt ~/requirements.txt ln -snf ~/Code/dotfiles/dot_surfraw.conf ~/.surfraw.conf +ln -snf ~/Code/dotfiles/private_dot_3llo/config.sh ~/.3llo_config # Other symblinks + Install Docker Desktop for Mac case "$(uname -s)" in diff --git a/dot_zsh_aliases b/dot_zsh_aliases index 633600f..660609c 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -103,6 +103,7 @@ alias systeminfo='neofetch' alias monitoring='glances' alias ':q'='exit' alias irc='weechat' +alias trello='3llo' # Show/hide hidden files in Finder alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder" diff --git a/dot_zshrc b/dot_zshrc index c52501f..2bcecc1 100644 --- a/dot_zshrc +++ b/dot_zshrc @@ -120,5 +120,7 @@ case "$(uname -s)" in export PATH="$PATH:/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin/:/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin" ;; esac + +. ~/.3llo_config export GOPATH="$HOME/go" export PATH="/usr/local/opt/grep/libexec/gnubin:$GOPATH/bin:$PATH"