:config
(setq org-src-tab-acts-natively t
org-src-preserve-indentation nil
- org-edit-src-content-indentation 0)
+ org-edit-src-content-indentation 0
+ org-log-done 'time)
:hook (org-mode . org-indent-mode))
(use-package org-notmuch
("web"
(or
(mode . web-mode)
+ (mode . css-mode)
+ (mode . scss-mode)
(mode . js2-mode)))
("shell"
(or
(company-minimum-prefix-length 1)
(company-selection-wrap-around t)
(company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
+ (company-dabbrev-downcase nil)
+ (company-dabbrev-ignore-case nil)
:config
(global-company-mode t))
#+end_src
(use-package emmet-mode
:bind* (("C-)" . emmet-next-edit-point)
("C-(" . emmet-prev-edit-point))
- :init
+ :config
+ (unbind-key "C-j" emmet-mode-keymap)
(setq emmet-move-cursor-between-quotes t)
:hook (web-mode css-mode html-mode sgml-mode))
#+end_src
#+begin_src emacs-lisp
(use-package ox-hugo
:after ox)
+
+(use-package ox-hugo-auto-export
+ :load-path "lib/ox-hugo")
#+end_src
* Post initialization