summaryrefslogtreecommitdiff
path: root/kshrc
blob: 45516c52b316c772e97fdca7d1bf014a1f7b62fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export GPG_TTY=/dev/pts/0
gpg-connect-agent updatestartuptty /bye >/dev/null
alias grep="ugrep --exclude-dir=node-modules --exclude-dir=_build"
alias e="$EDITOR"
alias g="git"
alias rcup="rcup -d ~/rcm"
alias lsrc="lsrc -d ~/rcm"
alias rcdn="rcdn -d ~/rcm"
alias mkrc="mkrc -d ~/rcm"
alias infols="inxi -S -c 0"
alias de='eval "$(direnv export bash)"'
alias f-commit="fossil commit && fossil git export"
PS1='$(git branch 2> /dev/null | grep "^\*" | colrm 1 2 | sed -e "s/$/./")${PWD##*/} '

function log {
  JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
  echo '*  :journal:' > /tmp/capture 
  kak /tmp/capture +1:3 -e "execute-keys i"
  if grep -q '^\*\s*:journal:' /tmp/capture
  then 
     echo "Empty capture; ignoring"
  else 
     echo "Storing capture in $JRNL"
     cat /tmp/capture > $JRNL
  fi
}

function capture {
  JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
  echo '*  ' > /tmp/capture  
  kak /tmp/capture +1:3 -e "execute-keys i"
  if grep -q '^\*\s*$' /tmp/capture 
  then 
     echo "Empty capture; ignoring"
  else 
     echo "Storing capture in $JRNL"
     cat /tmp/capture > $JRNL
  fi
}

function todo {
  TODO_BASE='* TODO  '
  JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
  echo '* TODO  ' > /tmp/capture
  kak /tmp/capture +1:8 -e "execute-keys i"
  if grep -q '^\* TODO\s*$' /tmp/capture 
  then 
     echo "Empty capture"
  else 
     echo "Storing capture in $JRNL"
     cat /tmp/capture > $JRNL
  fi
}

alias jrnl='stitch -t :journal:'

eval "$(direnv export bash)"
eval "$(zoxide init posix --hook prompt)"