diff --git a/.config/git/config b/.config/git/config index 514cf80..dfe42f7 100644 --- a/.config/git/config +++ b/.config/git/config @@ -98,6 +98,7 @@ add-git = !yadm add $XDG_CONFIG_HOME/git/config $CONFIG_SHELLS/git add-vim = !yadm add $XDG_CONFIG_HOME/nvim/init* add-shell = !yadm add $CONFIG_SHELLS + add-bin = !yadm add -u $HOME/.local/bin [filter "lfs"] clean = git-lfs clean -- %f diff --git a/.config/jrnl/jrnl.yaml b/.config/jrnl/jrnl.yaml new file mode 100644 index 0000000..0150f6e --- /dev/null +++ b/.config/jrnl/jrnl.yaml @@ -0,0 +1,21 @@ +colors: + body: none + date: none + tags: none + title: none +default_hour: 0 +default_minute: 0 +editor: nvim +encrypt: false +highlight: true +indent_character: '|' +journals: + default: ~/daten/Dropbox/dokumente/notes/journal/jrnl.txt + life: ~/daten/Dropbox/dokumente/notes/journal/life.txt + nug: ~/daten/Dropbox/dokumente/notes/journal/nugnug.txt + work: ~/daten/Dropbox/dokumente/notes/journal/work.txt +linewrap: 79 +tagsymbols: '@' +template: false +timeformat: '%Y-%m-%d %H:%M' +version: v2.4.5 diff --git a/.local/bin/note b/.local/bin/note index 11f637f..555d4b8 100755 --- a/.local/bin/note +++ b/.local/bin/note @@ -3,7 +3,7 @@ p=$PWD cd $HOME/daten/Dropbox/dokumente/notes loc=$1 case $1 in - log|life) shift; file=journal/${1:-general}.txt; date +%F >>$file;; + log|jrnl) shift; file=journal/${1:-jrnl}.txt;; #date +%F >>$file;; idea) shift; file=ideas/${1:-README}.md;; box) shift; file=box/$1.md;; write) shift; file=writings/$1.md;;