From e2dba6be7606fa8d9a08170da9add39a133bb5c0 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 2 Jul 2024 00:55:48 +0100 Subject: (Emacs/config)~Fix up some stuff in mode line --- Emacs/.config/emacs/config.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index b1f040e..b56efd2 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -324,14 +324,14 @@ the mode line to achieve this. ) +better-mode-line/right-segment ;; RIGHT SEGMENT '((:eval (if (project-current) ;; Name of current project (if any) - (project-name - (project-current)))) - (vc-mode vc-mode) ;; Git branch (if any) - " " + (concat (project-name + (project-current)) + vc-mode) ;; ... with git branch + "")) (:eval ;; LSP information (with-eval-after-load "eglot" (if eglot--managed-mode - (eglot--mode-line-format)))) + (concat " " (eglot--mode-line-format))))) mode-line-misc-info ;; Any other information )) :config -- cgit v1.2.3-13-gbd6f