Add ox-gfm and unicode insert function
This commit is contained in:
parent
c66113004a
commit
9b023381d2
1 changed files with 14 additions and 0 deletions
14
init.el
14
init.el
|
@ -525,6 +525,20 @@
|
|||
|
||||
(setq bibtex-autokey-year-length 4))
|
||||
|
||||
(use-package ox-gfm
|
||||
:ensure t
|
||||
:after (org)
|
||||
:config
|
||||
(eval-after-load "org"
|
||||
'(require 'ox-gfm nil t)))
|
||||
|
||||
(defun my-insert-char ()
|
||||
"Search for a unicode character and insert it."
|
||||
(interactive)
|
||||
(with-temp-buffer
|
||||
(call-interactively 'insert-char)
|
||||
(kill-ring-save (point-min) (point-max))))
|
||||
|
||||
|
||||
;; email configuration file
|
||||
(setq email-file (expand-file-name "email.el" user-emacs-directory))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue