Add csv-mode
This commit is contained in:
parent
720faae589
commit
55e65b87a0
1 changed files with 13 additions and 0 deletions
13
config.org
13
config.org
|
@ -244,6 +244,19 @@ This may work only on Linux (it uses SQL???), but my ebooks are only on Linux so
|
|||
(setq calibredb-order 'asc)))
|
||||
#+END_SRC
|
||||
|
||||
** =csv-mode=
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(unless (string-equal system-type "android")
|
||||
(use-package csv-mode
|
||||
:mode
|
||||
(("\\.csv\\'" . csv-mode))
|
||||
:hook
|
||||
(csv-mode . csv-align-mode)
|
||||
:config
|
||||
(setq csv-align-max-width 1000)))
|
||||
#+END_SRC
|
||||
|
||||
** =deft=
|
||||
|
||||
Let me search my journal files when I’m not at work, and reading notes otherwise. Set regexp search by default.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue