summaryrefslogtreecommitdiff
path: root/lisp/init-modeline.el
blob: 863f009161373b28d8ba90dc108e4a309e8a44b5 (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 in modeline but not load average
(setq display-time-format "%H:%M")
(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)