diff options
| author | 2025-01-02 15:33:51 -0800 | |
|---|---|---|
| committer | 2025-01-02 15:33:51 -0800 | |
| commit | 0598c15bfc336d4dffd76baae32937f64f51eb67 (patch) | |
| tree | c42b9018f6d07c6c8cd6a7201d71d4438ee50f27 | |
| parent | 48beb4b710a0b24b3769b499d21d11bbf72df09a (diff) | |
| download | emacs-config-0598c15bfc336d4dffd76baae32937f64f51eb67.tar.gz emacs-config-0598c15bfc336d4dffd76baae32937f64f51eb67.zip | |
oni-core: Remove buffer position from mode-line
| -rw-r--r-- | oni-core.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/oni-core.el b/oni-core.el index c3d78b0..9562af9 100644 --- a/oni-core.el +++ b/oni-core.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse <tom@ryuslash.org> ;; Keywords: local -;; Version: 2024.1014.135848 +;; Version: 2025.0102.153327 ;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview mixed-pitch ace-window vertico marginalia orderless consult embark docstr mini-frame) ;; This program is free software; you can redistribute it and/or modify @@ -149,6 +149,10 @@ _s_: String list" ;;; Get rid of the default help tooltip on the mode-line. (setq mode-line-default-help-echo nil) +;;; Remove the top/bottom/% display of the buffer position. I don't think I've +;;; ever looked at it. +(setq mode-line-position (cdr mode-line-position)) + (setq user-full-name "Tom Willemse" user-mail-address "tom@ryuslash.org") |
