summaryrefslogtreecommitdiff
path: root/kshrc
blob: 54c49c47361b25cd8331350ed11f1f2a507f1ba8 (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
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##*/} '

export STITCH_DIRECTORY=/home/mccd/notes
export STITCH_GREP_CMD=ugrep
function log {
  JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
  echo '*  :journal:' >> $JRNL 
  kak "$JRNL" +1:3 -e "execute-keys i"
}

function capture {
  JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
  echo '*  ' >> $JRNL 
  kak "$JRNL" +1:3 -e "execute-keys i"
}

function todo {
  JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
  echo '* TODO  ' >> $JRNL 
  kak "$JRNL" +1:8 -e "execute-keys i"
}

alias jrnl='stitch -t :journal:'

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