소스 검색

Fix display-color-cells condition

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

+ 4
- 4
emacs.el 파일 보기

@@ -401,8 +401,8 @@ found, otherwise returns nil."
'(git-gutter:update-interval 2))
(custom-set-variables
'(git-gutter:unchanged-sign " "))
(when (= (display-color-cells)
256)
(when (>= (display-color-cells)
256)
(let ((c "color-233"))
(set-face-background 'git-gutter:modified c)
(set-face-background 'git-gutter:added c)
@@ -646,8 +646,8 @@ found, otherwise returns nil."
(add-hook 'dired-mode-hook
(lambda ()
(set (make-local-variable 'whitespace-style) nil)))
(if (= (display-color-cells)
256)
(if (>= (display-color-cells)
256)
(set-face-foreground 'whitespace-newline "color-109")
;; (progn
;; (set-face-bold-p 'whitespace-newline


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