summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-03-16 19:20:39 +0100
committerAlan Pearce2016-03-16 19:22:28 +0100
commit425113d5ee191c851d96117a03553407a3dbdd55 (patch)
treeb86cf3b470676990fbb024c2b75ea8bcf07c618e /tag-emacs/emacs.d
parent148e754c3ea0ade3a7fb8a507ef4c5089986ed26 (diff)
downloaddotfiles-425113d5ee191c851d96117a03553407a3dbdd55.tar.lz
dotfiles-425113d5ee191c851d96117a03553407a3dbdd55.tar.zst
dotfiles-425113d5ee191c851d96117a03553407a3dbdd55.zip
Emacs: Remove header line
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org89
1 files changed, 1 insertions, 88 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 5655e63..466fc7c 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -204,97 +204,10 @@ By default, Emacs displays page breaks as ^L.  Lines look much nicer.
 #+END_SRC
 ** Modeline
 
-I modified the mode-line format to show me less information.  Instead,
-I put some of it in the frame-line at the top.
-
 #+BEGIN_SRC emacs-lisp
   (column-number-mode t)
   (size-indication-mode t)
 
-  (defun fill-line-format (line-format)
-    (max 0
-         (- (window-width)
-            (length (format-mode-line line-format)))))
-
-  (defvar mode-line-size
-    `((size-indication-mode
-       ((-3 ,(propertize
-              "%p"
-              'local-map mode-line-column-line-number-mode-map
-              'mouse-face 'mode-line-highlight
-              ;; XXX needs better description
-              'help-echo "Size indication mode\n\
-  mouse-1: Display Line and Column Mode Menu"))
-        " "
-        (-4 "%I")))))
-
-  (setq-default
-   mode-line-modes (let ((recursive-edit-help-echo "Recursive edit, type C-M-c to get out"))
-                     (list (propertize "%[" 'help-echo recursive-edit-help-echo)
-                           `(:propertize ("" mode-name)
-                                         help-echo "Major mode\n\
-  mouse-1: Display major mode menu\n\
-  mouse-2: Show help for major mode\n\
-  mouse-3: Toggle minor modes"
-                                         mouse-face mode-line-highlight
-                                         local-map ,mode-line-major-mode-keymap)
-                           '("" mode-line-process)
-                           `(:propertize ("" minor-mode-alist)
-                                         mouse-face mode-line-highlight
-                                         help-echo "Minor mode\n\
-  mouse-1: Display minor mode menu\n\
-  mouse-2: Show help for minor mode\n\
-  mouse-3: Toggle minor modes"
-                                         local-map ,mode-line-minor-mode-keymap)
-                           (propertize "%n" 'help-echo "mouse-2: Remove narrowing from buffer"
-                                       'mouse-face 'mode-line-highlight
-                                       'local-map (make-mode-line-mouse-map
-                                                   'mouse-2 #'mode-line-widen))
-                           (propertize "%]" 'help-echo recursive-edit-help-echo)
-                           " "))
-   mode-line-buffer-identification (list (propertize "%b"
-                                                     'face 'mode-line-buffer-id))
-
-   mode-line-position `((line-number-mode
-                         ((column-number-mode
-                           ,(propertize
-                             "%l:%c"
-                             'local-map mode-line-column-line-number-mode-map
-                             'mouse-face 'mode-line-highlight
-                             'help-echo "Line number and Column number\n\
-  mouse-1: Display Line and Column Mode Menu")
-                           (6 ,(propertize
-                                "L%l"
-                                'local-map mode-line-column-line-number-mode-map
-                                'mouse-face 'mode-line-highlight
-                                'help-echo "Line Number\n\
-  mouse-1: Display Line and Column Mode Menu"))))
-                         ((column-number-mode
-                           (5 ,(propertize
-                                "C%c"
-                                'local-map mode-line-column-line-number-mode-map
-                                'mouse-face 'mode-line-highlight
-                                'help-echo "Column number\n\
-  mouse-1: Display Line and Column Mode Menu"))))))
-   mode-line-format `("%e"
-                      " "
-                      mode-line-modes
-                      mode-line-misc-info
-                      (vc-mode vc-mode)
-                      mode-line-end-spaces)
-   header-line-format `("%e"
-                        mode-line-front-space
-                        mode-line-mule-info
-                        mode-line-client
-                        mode-line-modified
-                        mode-line-auto-compile
-                        mode-line-remote " "
-                        mode-line-position " "
-                        mode-line-size
-                        " ⎸ "
-                        mode-line-buffer-identification
-                        ))
-
   (setq frame-title-format
           '("%f" (dired-directory dired-directory)))
 #+END_SRC
@@ -463,7 +376,7 @@ it needs hooking into projectile and a key bound to switch between projects.
   (use-package perspective
     :bind* ("s-p" . persp-switch)
     :init (progn
-            (setq persp-show-modestring 'header)
+            (setq persp-show-modestring t)
             (persp-mode)))
 
   (use-package persp-projectile