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

;; disable away timestamp in ERC
(setq erc-away-timestamp-format nil)
(setq erc-timestamp-format nil)