From 14ab99ae2d8c8c493e3642930249a9fa25c245b3 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 21 Jan 2019 17:03:30 +0100 Subject: [PATCH] misc: taskwarrior: add --- misc/setup.sh | 4 ++++ misc/taskwarrior/taskrc | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 misc/taskwarrior/taskrc diff --git a/misc/setup.sh b/misc/setup.sh index c04bc52..2d65a38 100755 --- a/misc/setup.sh +++ b/misc/setup.sh @@ -66,3 +66,7 @@ fi if installed perlcritic; then link perl/perlcriticrc ~/.perlcriticrc fi + +if installed task; then + link taskwarrior/taskrc ~/.taskrc +fi diff --git a/misc/taskwarrior/taskrc b/misc/taskwarrior/taskrc new file mode 100644 index 0000000..f804658 --- /dev/null +++ b/misc/taskwarrior/taskrc @@ -0,0 +1,41 @@ +# Taskwarrior configuration file. + +# Copyright (C) 2019 Simon Ruderich +# +# This file is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this file. If not, see . + + +data.location=~/.local/share/taskwarrior + + +# Where I live the week starts on Monday. +weekstart=monday + +# I like (really) short commands. +abbreviation.minimum=1 + +# `task projects` should list projects of all tasks, not only pending ones. +list.all.projects=1 + + +# +later is used for tasks which I don't want to forget but which don't have +# to happen any time soon. +urgency.user.tag.later.coefficient=-2 +color.tag.later=color242 + +# Blocking something doesn't make the task more important, it should just +# reduce the urgency of the blocked command. +urgency.blocking.coefficient=0.0 +color.blocking= +color.blocked= -- 2.43.2