summary refs log tree commit diff
path: root/config/init-modeline.el
blob: 9d3c59a401a1994e8a4e1be155d5eb47765822f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;; init-modeline.el --- configure the modeline -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; Commentary:

;; Configure the modeline

;;; Code:

(require 'diminish)
(require 'time)

;; show column number in the mode line
(setq column-number-mode t)

(setq display-time-24hr-format t
      display-time-interval 60
      display-time-format "%H:%M %d.%m"
      display-time-default-load-average nil)

(provide 'init-modeline)

;;; init-modeline.el ends here