25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ;;-*-mode: Emacs-Lisp; coding: utf-8;-*-
-
- (add-to-list 'auto-mode-alist '("\\.org\>" . org-mode))
-
- (add-hook 'org-mode-hook
- (lambda ()
- (ispell-minor-mode)
- (visual-line-mode)
- (hl-line-mode)
- (delete '("\\.pdf\\'" . default) org-file-apps)
- (if osx-p
- (add-to-list 'org-file-apps '("\\.pdf\\'" . "open %s"))
- (add-to-list 'org-file-apps '("\\.pdf\\'" . "evince %s")))
- ))
|