9 lines
222 B
EmacsLisp
9 lines
222 B
EmacsLisp
;;; custom.el --- custom faces
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
(custom-set-faces
|
|
'(hl-line ((t (:extend t :background "#3a3a3a"))))
|
|
'(line-number ((t (:background "#1d2021" :foreground "#7c6f64")))))
|
|
|
|
;;; custom.el ends here
|