2015-12-02 14:23:39 +00:00
|
|
|
#+TITLE: Deft layer
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2019-05-02 21:49:30 +00:00
|
|
|
#+TAGS: layer|reader
|
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
* Table of Contents :TOC_4_gh:noexport:
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#description][Description]]
|
2018-02-01 20:25:36 +00:00
|
|
|
- [[#features][Features:]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#install][Install]]
|
|
|
|
- [[#layer][Layer]]
|
|
|
|
- [[#configuration][Configuration]]
|
2018-12-05 03:03:03 +00:00
|
|
|
- [[#key-bindings][Key bindings]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Description
|
2018-02-01 20:25:36 +00:00
|
|
|
This layer adds a search driven note taking system into Spacemacs.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2018-02-01 20:25:36 +00:00
|
|
|
** Features:
|
|
|
|
- Browsing and creating notes with a powerfull search function via [[http://jblevins.org/projects/deft/][Deft]].
|
|
|
|
- Integration of =org-mode= as note editor.
|
|
|
|
- Configurable list of extensions to recognize as notes.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Install
|
|
|
|
** Layer
|
2016-01-06 05:21:55 +00:00
|
|
|
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
|
|
|
|
add =deft= to the existing =dotspacemacs-configuration-layers= list in this
|
|
|
|
file.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** Configuration
|
|
|
|
By default deft tries to put notes in =~/.deft= but you can change
|
2018-02-01 20:25:36 +00:00
|
|
|
this in your =dotspacemacs/user-config= function:
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2015-06-10 21:16:01 +00:00
|
|
|
#+BEGIN_SRC emacs-lisp
|
2018-09-19 03:54:47 +00:00
|
|
|
(setq deft-directory "~/Dropbox/notes")
|
2015-06-10 16:44:30 +00:00
|
|
|
#+END_SRC
|
|
|
|
|
2018-02-01 20:25:36 +00:00
|
|
|
By default =Deft= uses filenames for note titles and =org-mode= for editing.
|
|
|
|
The default extension for new notes is =org=. However also =md= and =txt=
|
|
|
|
files are recognized as notes. Which extensions are used for notes discovery
|
|
|
|
can be configured in your =dotfile=:
|
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
#+BEGIN_SRC emacs-lisp
|
2018-02-01 20:25:36 +00:00
|
|
|
(setq deft-extensions '("org" "md" "txt"))
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
Just add or substitute your preferred extension.
|
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
* Key bindings
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
| Key binding | Description |
|
2015-06-10 16:44:30 +00:00
|
|
|
|-------------+----------------------------------|
|
2015-06-10 21:16:01 +00:00
|
|
|
| ~SPC a n~ | Open Deft (works globally) |
|
2017-04-21 03:21:09 +00:00
|
|
|
| ~SPC m c~ | Clear deft filter |
|
2015-06-10 21:16:01 +00:00
|
|
|
| ~SPC m d~ | Delete selected note |
|
|
|
|
| ~SPC m i~ | Toggle to regex search |
|
|
|
|
| ~SPC m n~ | Create new file with filter text |
|
2017-04-21 03:21:09 +00:00
|
|
|
| ~SPC m N~ | Create new file named |
|
|
|
|
| ~SPC m o~ | Deft open file in other window |
|
|
|
|
| ~SPC m r~ | Rename selected note |
|
2017-07-14 02:56:32 +00:00
|
|
|
| ~SPC m q~ | quit deft window |
|