emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit aefa48547d0fa43a6c166360a12f44c115d71ddc
parent c5bb3810a1b56bebe3cb5a761f3099757c932e9e
Author: Cem Keylan <cem@ckyln.com>
Date:   Tue, 24 Mar 2020 01:40:11 +0300

Org-mode todo configuration

Diffstat:
Minit.org | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/init.org b/init.org @@ -294,6 +294,22 @@ further. ) #+END_SRC +*** Orgmode TODO configuration +I have set some additional TODO states. Those are: +- TODO :: For when I haven't started the job. +- STARTED :: For when I have started the item. +- FEEDBACK :: This is for when I am expecting feedback or I am reviewing the job. +- DONE :: No explanation necessary. + +Code below is written for adding more possible sequences depending on the +project I am working on. + +#+BEGIN_SRC emacs-lisp +(setq org-todo-keywords + '((sequence "TODO" "|" "DONE") + (sequence "TASK" "STARTED" "FEEDBACK" "|" "DONE")) +) +#+END_SRC ** Magit I like magit, it is quite useful when you don't want to leave emacs and