Questions tagged [deft-mode]

3 questions
12
votes
2 answers

A search interface for org mode files

I use org-mode to take notes. Currently I have a root directory, say, "Notes", and there are several subdirectories inside it, for example, "Linux", "Programming", etc. The notes taken using org-mode are stored under those subdirectories. I was…
cutejumper
  • 787
  • 5
  • 12
4
votes
4 answers

How to support multiple extensions in Deft?

In deft mode I can change the default text extension using (setq deft-extension "txt") Is there any way to support multiple file types? (e.g. I have a mix of .txt .md and .org files in my directory)
ws6079
  • 155
  • 5
1
vote
1 answer

Is it possible to open Deft in a sidebar?

I'm trying to open Deft in the left sidebar using this code: (setq display-buffer-alist '(("*Deft*" (display-buffer-in-side-window) (window-width . 0.25) (side . left) (slot . 0)))) This is not working…