diff options
author | Thomas Voss <thomas.voss@humanwave.nl> | 2025-06-11 14:59:58 +0200 |
---|---|---|
committer | Thomas Voss <thomas.voss@humanwave.nl> | 2025-06-11 14:59:58 +0200 |
commit | 03f5bb39561fad4d7745ff796b91f73933d99259 (patch) | |
tree | c02bf7e1b0657c555412c895f4efebdad777dde2 /.config/emacs/modules/mm-theme.el | |
parent | fad74e4384176f8cf98c86cfbf5c0468c0f49dce (diff) | |
parent | eb28738864a4b3dfe4443e897ccdea21c0765dc0 (diff) |
Merge branch 'master' of github.com:Mango0x45/dotfiles
Diffstat (limited to '.config/emacs/modules/mm-theme.el')
-rw-r--r-- | .config/emacs/modules/mm-theme.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.config/emacs/modules/mm-theme.el b/.config/emacs/modules/mm-theme.el index 53dc97b..95c96c9 100644 --- a/.config/emacs/modules/mm-theme.el +++ b/.config/emacs/modules/mm-theme.el @@ -16,7 +16,7 @@ "The default monospace font. This is a plist containing a font name, -weight, and -height.") -(defvar mm-theme-proportional-font '("SF Pro" :weight regular :height 162) +(defvar mm-theme-proportional-font '("OpenSans" :weight regular :height 162) "The default proportional font. This is a plist containing a font name, -weight, and -height.") @@ -203,9 +203,14 @@ See also the `mm-theme-background-opacity' variable." ;;; More Intuiative UI for Certain Modes +(defun mm-disable-line-selection-mode () + (line-selection-mode -1)) + (use-package line-selection-mode :hook ((bookmark-bmenu-mode dired-mode ibuffer-mode magit-repolist-mode) - . line-selection-mode)) + . line-selection-mode) + :config + (add-hook 'wdired-mode-hook #'mm-disable-line-selection-mode)) ;;; Line Highlighting |