diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-04-04 16:22:54 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-04-04 16:22:54 +0100 |
commit | b92e04940e188a625afe443dd959c3666130d654 (patch) | |
tree | 721608530baf88ff14b88644828791d65b339c7b /profile | |
parent | f02f70eb10d2e0e2de9554e24fd62aef5449523f (diff) |
added tw stuff and perl variables
Diffstat (limited to '')
-rw-r--r-- | profile | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -3,6 +3,9 @@ # sh/ksh initialization export ENV=$HOME/.kshrc export PATH=$PATH:/usr/local/jdk-11/bin +export PATH=$PATH:/home/lemon/bin +export HISTFILE=~/.ksh_history +export HISTSIZE=10000 alias lynx='~/dotfiles/lynx/lynx' #alias xclip='xclip -selection c' @@ -10,8 +13,23 @@ alias '?'=duck alias vimpluginstall="vim +':PlugInstall' +':q!' +':q!'" alias ipinfo="curl ipinfo.io" alias weather="curl wttr.in" -alias vi='vim' -alias a='task add' +alias ta="task add $1" +alias t="task ready" +alias report="task burndown.daily" +#alias a='task add' alias du='ncdu --color dark -rr -x --exclude .git' alias free='free -h' alias gloga='git log --oneline --decorate --graph --all' + +taskProject(){ + echo "Please enter a task number \nfollowed by a project name" + task $1 modify project:$2 +} +alias tpro=taskProject + +# Perl stuff +PATH="/home/lemon/perl5/bin${PATH+:}${PATH}"; export PATH; +PERL5LIB="/home/lemon/perl5/lib/perl5${PERL5LIB+:}${PERL5LIB}"; export PERL5LIB; +PERL_LOCAL_LIB_ROOT="/home/lemon/perl5${PERL_LOCAL_LIB_ROOT+:}${PERL_LOCAL_LIB_ROOT}"; export PERL_LOCAL_LIB_ROOT; +PERL_MB_OPT="--install_base \"/home/lemon/perl5\""; export PERL_MB_OPT; +PERL_MM_OPT="INSTALL_BASE=/home/lemon/perl5"; export PERL_MM_OPT; |