diff options
-rw-r--r-- | emacs.d/init.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index ee3d6f3..1034023 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -58,7 +58,10 @@ '(dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.\\|^\\..*$") '(diredp-hide-details-initially-flag t) '(diredp-wrap-around-flag nil) + '(erc-insert-timestamp-function (quote erc-insert-timestamp-left)) '(erc-mode-line-format "%t") + '(erc-prompt ">") + '(erc-timestamp-format "[%Y-%m-%d %H:%M] ") '(fill-column 79) '(font-lock-maximum-decoration t) '(frame-background-mode (quote dark)) @@ -115,6 +118,13 @@ '(diredp-read-priv ((t (:foreground "gray70")))) '(diredp-symlink ((t (:foreground "#32E2E2")))) '(diredp-write-priv ((t (:foreground "gray90")))) + '(erc-current-nick-face ((t (:foreground "#B58900" :weight bold)))) + '(erc-input-face ((t (:foreground "gray90")))) + '(erc-my-nick-face ((t (:foreground "#B58900" :weight bold)))) + '(erc-nick-default-face ((t (:foreground "#B58900")))) + '(erc-notice-face ((t (:foreground "gray40")))) + '(erc-prompt-face ((t (:foreground "green" :weight bold)))) + '(erc-timestamp-face ((t (:foreground "gray60")))) '(error ((t (:foreground "#DC322F" :weight bold)))) '(escape-glyph ((((background dark)) (:foreground "cyan")))) '(font-lock-comment-face ((t (:foreground "#6c71c4")))) |