blob: 08155adda10e3f25b511c01d3662539d272a555c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;; init-modeline.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;----------------------------------------------------------------------------
;; Modeline configuration
;;----------------------------------------------------------------------------
(use-package doom-modeline
:pin "MELPA"
:ensure t
:hook (after-init . doom-modeline-mode)
:config (setq column-number-mode t)
)
(provide 'init-modeline)
;; End:
;;; init-modeline.el ends here
|