summaryrefslogtreecommitdiff
path: root/emacs/inits/02-modeline.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/inits/02-modeline.el')
-rw-r--r--emacs/inits/02-modeline.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/emacs/inits/02-modeline.el b/emacs/inits/02-modeline.el
index 6ea2b07..142acbb 100644
--- a/emacs/inits/02-modeline.el
+++ b/emacs/inits/02-modeline.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2021-09-27 08h47 EDT (hobbies)>
+;; Time-stamp: <2024-01-18 13h15 CET (3913c8e4)>
;; -----------------------------------------------------------------------------
;; Mode-line
@@ -9,7 +9,7 @@
(defun abbreviate-left-trim-path (p len)
(let ((pa (abbreviate-file-name p)))
(if (> (length pa) (+ 3 len))
- (format "...%s" (substring pa (- (length pa) len)))
+ (format "...%s" (substring pa (- (length pa) len)))
pa)))
(setq display-time-format "%d/%H.%M"
@@ -31,6 +31,5 @@
(use-package minions
:ensure t
:config
- (setq minions-mode-line-lighter ":"
- minions-direct '(god-local-mode))
+ (setq minions-mode-line-lighter ":")
(minions-mode 1))