[emacs] Whoops fix that!
This commit is contained in:
parent
5093d7b358
commit
466bc0bb58
1 changed files with 28 additions and 2 deletions
|
|
@ -364,7 +364,7 @@
|
||||||
"Doty's hook for text mode."
|
"Doty's hook for text mode."
|
||||||
(setq fill-column 70)
|
(setq fill-column 70)
|
||||||
(turn-on-auto-fill)
|
(turn-on-auto-fill)
|
||||||
(my--fix-aspell)
|
(my/fix-aspell)
|
||||||
(flyspell-mode))
|
(flyspell-mode))
|
||||||
|
|
||||||
(add-hook 'text-mode-hook 'my-text-mode-hook)
|
(add-hook 'text-mode-hook 'my-text-mode-hook)
|
||||||
|
|
@ -950,7 +950,7 @@ Or, uh, Objective C, I guess."
|
||||||
(defun my-org-mode-hook ()
|
(defun my-org-mode-hook ()
|
||||||
"My org mode hook."
|
"My org mode hook."
|
||||||
(turn-off-filladapt-mode)
|
(turn-off-filladapt-mode)
|
||||||
(my--fix-aspell)
|
(my/fix-aspell)
|
||||||
(require 'ox-quip))
|
(require 'ox-quip))
|
||||||
|
|
||||||
(use-package org
|
(use-package org
|
||||||
|
|
@ -1323,4 +1323,30 @@ Or, uh, Objective C, I guess."
|
||||||
(use-package swift-mode :ensure t
|
(use-package swift-mode :ensure t
|
||||||
:mode "\\.swift\\(interface\\)?\\'")
|
:mode "\\.swift\\(interface\\)?\\'")
|
||||||
|
|
||||||
|
;; =================================================================
|
||||||
|
;; Combobulate
|
||||||
|
;; =================================================================
|
||||||
|
(use-package combobulate
|
||||||
|
:preface
|
||||||
|
;; You can customize Combobulate's key prefix here.
|
||||||
|
;; Note that you may have to restart Emacs for this to take effect!
|
||||||
|
(setq combobulate-key-prefix "C-c o")
|
||||||
|
|
||||||
|
;; Optional, but recommended.
|
||||||
|
;;
|
||||||
|
;; You can manually enable Combobulate with `M-x
|
||||||
|
;; combobulate-mode'.
|
||||||
|
;; :hook
|
||||||
|
;; ((python-ts-mode . combobulate-mode)
|
||||||
|
;; (js-ts-mode . combobulate-mode)
|
||||||
|
;; (html-ts-mode . combobulate-mode)
|
||||||
|
;; (css-ts-mode . combobulate-mode)
|
||||||
|
;; (yaml-ts-mode . combobulate-mode)
|
||||||
|
;; (typescript-ts-mode . combobulate-mode)
|
||||||
|
;; (json-ts-mode . combobulate-mode)
|
||||||
|
;; (tsx-ts-mode . combobulate-mode))
|
||||||
|
;; Amend this to the directory where you keep Combobulate's source
|
||||||
|
;; code.
|
||||||
|
:load-path ("/home/doty/src/combobulate"))
|
||||||
|
|
||||||
;;; init.el ends here
|
;;; init.el ends here
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue