소스 검색

Add flyspell configs

master
10sr 4 년 전
부모
커밋
0f138d2f9d
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제
  1. +13
    -1
      emacs.el

+ 13
- 1
emacs.el 파일 보기

@@ -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


불러오는 중...
취소
저장