Ver código fonte

Add flyspell configs

master
10sr 4 anos atrás
pai
commit
0f138d2f9d
Acessado por: 10sr ID da chave GPG: 7BEC428194130EB2
1 arquivos alterados com 13 adições e 1 exclusões
  1. +13
    -1
      emacs.el

+ 13
- 1
emacs.el Ver arquivo

@@ -1726,10 +1726,22 @@ Otherwize hook it."
(add-hook 'markdown-mode-hook
(lambda ()
(outline-minor-mode 1)
(flyspell-mode)
(set (make-local-variable 'comment-start) ";")))
)

;; http://keisanbutsuriya.hateblo.jp/entry/2015/02/10/152543
(when (executable-find "aspell")
(setq-default ispell-program-name "aspell"))
(with-eval-after-load 'ispell
(add-to-list 'ispell-skip-region-alist '("[^\000-\377]+")))

(when (fboundp 'flyspell-mode)
(add-hook 'text-mode-hook
'flyspell-mode))
(when (fboundp 'flyspell-prog-mode)
(add-hook 'prog-mode-hook
'flyspell-prog-mode))

;; c-mode
;; http://www.emacswiki.org/emacs/IndentingC
;; http://en.wikipedia.org/wiki/Indent_style


Carregando…
Cancelar
Salvar