您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

12 行
390 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; I only want the time in my modeline, not system load
  3. ;; %T is HH:MM:SS basically
  4. ;; Also update every 5 seconds instead of 60
  5. (custom-set-variables '(display-time-default-load-average nil))
  6. (custom-set-variables '(display-time-format "%T"))
  7. (custom-set-variables '(display-time-interval 5))
  8. ;; Set the time in the mode line
  9. (display-time-mode)