summaryrefslogtreecommitdiff
path: root/lisp/init-modeline.el
blob: 3243ad95efc571360579146c300b05bf0dba7f2a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;; 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)