diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-25 12:05:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-25 12:05:47 -0700 |
commit | 304b719a373fcf763fd21375cf959f364e34ec52 (patch) | |
tree | 40226b70f97430a368d91b0684f93b58fad55258 | |
parent | emacs: set world-clock only when variables exist (diff) | |
download | emacs.d-304b719a373fcf763fd21375cf959f364e34ec52.tar.gz |
emacs: disable mouse-overs for the modeline
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index 97565bc..108ccb8 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -125,6 +125,10 @@ mode-line-misc-info mode-line-end-spaces)) +;; Disable help mouse-overs for mode-line as they provide little to no benefits +(setq mode-line-default-help-echo nil + show-help-function nil) + (use-package hl-line :hook ((prog-mode text-mode conf-mode special-mode) . hl-line-mode) :custom |