summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-06-12 22:09:56 +0000
committernoa@gaiwan.org2024-06-12 22:09:56 +0000
commitdf723dcc913456f8e4e57182fc202d76dcf52442 (patch)
treea4d21223848f50973c93dc884a3040ee9572855b /emacs
parent65469ad85bdc5c1c3782ed632f39f574970e38ce (diff)
Update information and configuration for ui elements
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el17
1 files changed, 12 insertions, 5 deletions
diff --git a/emacs/init.el b/emacs/init.el
index fa08dce..75598ca 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -554,13 +554,20 @@ and when JID is not in `jabber-activity-banned'."
     (insert whitespace)))
 (define-key global-map (kbd "RET") 'naive-return-and-indent)
 
-;;; interface
+;;; Interface
+
+;; I want to make sure that various bits of the interface are hidden.  but this isn't an "all gui chrome is useless" rampage.  I personally think the scrollbar is useful, i like the visual indication it gives of how far i am through a file.
+
+;; At the moment, explicitly disabling the menu bar and tool bar does nothing, because i already set there to be no lines displayed for the tool and menu bars in my early-init.el file.
+;; (setopt
+;; 	menu-bar-mode nil
+;; 	tool-bar-mode nil
+;; )
+
+;; Tooltips are little popups next to the mouse cursor.  I think this information is helpful, but i like it to appear in a more consistent position, because i find it frustrating when popups cover parts of the ui that i wanted to see.  By disabling tooltip-mode, the contents that would be in a popup is instead shown in the echo area.
+(setopt tooltip-mode nil)
 
-;; we want to make sure that various bits of the interface are hidden.  but this isn't an "all gui chrome is useless" rampage.  i personally think the scrollbar is useful, i like the visual indication it gives of how far i am through a file.
 (setopt
-	;; menu-bar-mode nil
-	;; tool-bar-mode nil
-	tooltip-mode nil	;; show tooltips in the echo area
 	echo-keystrokes 0.1)	;; show chord progress (almost) immediately
 
 ;; A useful feature when programming is to show matching parentheses.  Show-paren-mode is a global mode.  By default it runs in all buffers except those inheriting from special mode.