20 lines
491 B
EmacsLisp
20 lines
491 B
EmacsLisp
;;; 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
|