;; clean up mode line (require 'rich-minority) (setq rm-whitelist '(" God" " Paredit")) ;; show time and date in modeline (but not load average) (setq display-time-day-and-date t) (setq display-time-default-load-average nil) (display-time-mode 1) ;; show column position of point in status bar (column-number-mode 1) ;; smart mode line (setq sml/theme 'respectful) (sml/setup) ;; show me where I am, nyan cat! (nyan-mode) (setq nyan-wavy-trail t) (nyan-start-animation) ;; disable away timestamp in ERC (setq erc-away-timestamp-format nil) (setq erc-timestamp-format nil)