delete load file, concat org-download filename, disable flyspell

This commit is contained in:
cho 2023-10-03 20:00:06 +07:00
parent e088ea533f
commit 50bd201ece
1 changed files with 4 additions and 2 deletions

View File

@ -84,8 +84,6 @@
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
;; they are implemented.
(load! "bindings.el")
(after! org
;;; agenda files
@ -345,6 +343,7 @@
;; org-download-screenshot-method "wl-paste -t image/png > '%s'"
;; below script is available on dotfiles: ../.local/bin
org-download-screenshot-method "convert-paste-png.sh '%s'"
org-download-abbreviate-filename-function 'concat
org-download-image-dir "~/notebook/images/org-download"
org-download-heading-lvl nil
org-download-timestamp "%Y%m%d-%H%M%S_")
@ -352,3 +351,6 @@
(map! :leader
(:prefix ("i". "insert")
:desc "insert image from clipboard" "Y" #'org-download-screenshot))
;; disable flyspell-mode
(setq-default spell-checking-enable-by-default nil)