diff options
author | bd <bdunahu@gmail.com> | 2024-01-04 18:47:26 -0700 |
---|---|---|
committer | bd <bdunahu@gmail.com> | 2024-01-04 18:47:26 -0700 |
commit | 8ec141c3c2b1e5ff80632ca58c7c62cae8f357d0 (patch) | |
tree | 6bad9ed6b6c5adbe888b0dc590e50b8e1df9fb4e /.config/emacs/bd-mode-and-themes.el | |
parent | bc930046e3c7413ffb8463904cbd053c1c9d2874 (diff) |
Removed all bindings prefixed with C-z, moved more to default.
Diffstat (limited to '.config/emacs/bd-mode-and-themes.el')
-rw-r--r-- | .config/emacs/bd-mode-and-themes.el | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/.config/emacs/bd-mode-and-themes.el b/.config/emacs/bd-mode-and-themes.el index f83f740..a5471ae 100644 --- a/.config/emacs/bd-mode-and-themes.el +++ b/.config/emacs/bd-mode-and-themes.el @@ -116,12 +116,6 @@ ;; custom function to remove mode line from images (add-hook 'image-mode-hook 'disable_mode_line) -(global-display-line-numbers-mode) -(global-visual-line-mode t) -(setq display-line-numbers-type 'relative) -;; required for other customizations later in themes. -(global-hl-line-mode 1) - ;;;; true transparency ;; (add-to-list 'default-frame-alist '(alpha-background . 60)) (add-to-list 'default-frame-alist '(alpha . (90 . 90))) @@ -150,16 +144,17 @@ (add-hook 'modus-themes-after-load-theme-hook #'modus-themes-custom-faces) -(setq modus-themes-italic-constructs t - modus-themes-hl-line '(accented) - modus-themes-subtle-line-numbers t - modus-themes-paren-match '(intense) - modus-themes-region '(bg-only) - modus-themes-syntax '(faint) - modus-themes-mode-line '(borderless) - modus-themes-org-blocks 'gray-background - modus-themes-headings '( - (1 . (rainbow overline)))) +(setopt modus-themes-italic-constructs t + modus-themes-bold-constructs t + modus-themes-hl-line '(accented) + modus-themes-subtle-line-numbers t + modus-themes-paren-match '(intense) + modus-themes-region '(bg-only) + modus-themes-syntax '(faint) + modus-themes-mode-line '(borderless) + modus-themes-org-blocks 'gray-background + modus-themes-headings '( + (1 . (rainbow overline)))) (load-theme 'modus-vivendi t) |