Aquamacs

Posted on 2018-10-18(목) in Emacs

customizations.el

  • 위치 : $HOME/Library/Preferences/Aquamacs\ Emacs/customizations.el

PATH 설정

(setenv "PATH"
  (concat
   "/Users/1001028/bin" ":"
   "/usr/local/bin" ":"
   (getenv "PATH")
  )
)

PATH 확인

M-x getenv => PATH

LANG=ko_KR.UTF-8

(setenv "LANG"
    (concat
     "ko_KR.UTF-8"
     )
    )

Preferences.el

  • 위치 : $HOME/Library/Preferences/Aquamacs\ Emacs/Preferences.el
(osx-key-mode -1)                ; no Mac-specific key bindings
(setq select-enable-clipboard t) ; clipboard share
(set-default-font "Hack-12")     ; set hack font #1
(set-frame-font "Hack-12")       ; set hack font #2