summaryrefslogtreecommitdiff
path: root/lisp/init-modeline.el
blob: d2e1d94f53b61376d1dd02c79f40410a50d27ac8 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;; clean up mode line
(require 'diminish)
(diminish 'centered-cursor-mode)
(diminish 'auto-complete-mode)
(diminish 'magit-auto-revert-mode)
(diminish 'guide-key-mode)
(diminish 'projectile-mode)

;; show time and date in modeline
(display-time-mode 1)
(setq display-time-day-and-date t)

;; 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)