Add global-hi-lock-mode

This commit is contained in:
Dimitri Lozeve 2024-01-14 15:18:03 +01:00
parent b8a654a875
commit 464e41ebc1

13
init.el
View file

@ -127,16 +127,8 @@
;;; Appearance ;;; Appearance
(use-package paren
:config
(show-paren-mode 1))
;; Highlight the current line
(use-package hl-line
:config
(global-hl-line-mode -1))
(use-package emacs (use-package emacs
:straight nil
:init :init
(setq modus-themes-italic-constructs t (setq modus-themes-italic-constructs t
modus-themes-bold-constructs t modus-themes-bold-constructs t
@ -145,6 +137,9 @@
:config :config
;; (setq modus-themes-common-palette-overrides modus-themes-preset-overrides-faint) ;; (setq modus-themes-common-palette-overrides modus-themes-preset-overrides-faint)
(load-theme 'modus-vivendi) (load-theme 'modus-vivendi)
(show-paren-mode 1)
(global-hl-line-mode -1) ; Highlight the current line
(global-hi-lock-mode 1)
:bind ("<f12>" . modus-themes-toggle)) :bind ("<f12>" . modus-themes-toggle))
(use-package mood-line (use-package mood-line