Moving Away From Deft

As the title says, it is with a heavy heart that I have decided to move away from deft. There are a few reasons for this:

(use-package deft
  :bind ("C-c d" . deft)
  :commands (deft)
  :config (setq deft-text-mode 'org-mode
            deft-use-filename-as-title nil
            deft-auto-save-interval 0
            deft-use-filter-string-for-filename t
            deft-extensions '("org")
            deft-default-extension "org"
            deft-time-format "%Y-%m-%d %H:%M:%S"
            deft-new-file-format "%Y-%m-%dT%H%M%S"
            deft-strip-summary-regexp "\\([\n]\\|^#\\+.+:.*$\\)"
            deft-recursive t))

It is time to move onto something a little more simple, namely:

(setq deft-directory (concat home-dir "/DCIM/content"))
(bind-key* (kbd "C-c d") (lambda()(interactive)(dired deft-directory)))

and yes I decided to keep the venerable name of deft in memoriam.

I think this is an example of over time learning that emacs has a lot of what you want already built in and with org mode it gently nudges you to organise files in a more coherent manner leading to a more simple agnostic digital way of life.

Comments

comments powered by Disqus