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;-*-
-
- (when window-system
- (require 'cl)
-
- (defun font-candidate (&rest fonts)
- "Return first font that matches list of provided fonts."
- (find-if (lambda (f) (find-font (font-spec :name f))) fonts))
-
- ;; Try out these fonts in order of preference depending on install status.
- (set-face-attribute 'default nil :font
- (font-candidate '"Source Code Pro-14:weight=normal"
- "Menlo-12:weight=normal"
- "Monaco-12:weight=normal"))
-
- (cond (linux-p
- (setq interprogram-paste-function 'x-cut-buffer-or-selection-value)
- (setq x-select-enable-clipboard t)
- )
- )
- )
|