diff --git a/conf.org b/conf.org index bf9db23..b4962fc 100644 --- a/conf.org +++ b/conf.org @@ -791,7 +791,10 @@ No need to file under DONE or CANC states #+END_SRC *** clocking #+BEGIN_SRC emacs-lisp - +(setq org-clock-history-length 23 + org-clock-out-when-done t + org-clock-persist t + org-clock-report-include-clocking-task t) #+END_SRC *** agenda **** general config @@ -1792,7 +1795,8 @@ Dired makes new buffers by default. Use =find-alternate-file= to avoid this. "a" 'dired-find-file (kbd "") 'dired-find-alternate-file "^" (lambda () (interactive) (find-alternate-file "..")) - (kbd "C-") 'nd/dired-xdg-open) + (kbd "C-") 'nd/dired-xdg-open + "q" 'nd/kill-current-buffer) #+END_SRC **** helm I like tab completion...regardless of what the helm zealots say. This is actually easier and faster because I can just scroll through the source list with j/k and mash TAB when I find the right directory. @@ -1830,6 +1834,8 @@ These are for mode-specific bindings that can/should be outside of the evil maps (global-set-key (kbd "") 'org-agenda) (global-set-key (kbd "") 'org-capture) (global-set-key (kbd "") 'cfw:open-org-calendar) +(global-set-key (kbd "") 'org-clock-goto) +(global-set-key (kbd "") 'ansi-term) (global-set-key (kbd "") 'mu4e) (global-set-key (kbd "C-") 'global-hl-line-mode) (global-set-key (kbd "S-") 'display-line-numbers-mode)