Added: highlight-parentheses package
This commit is contained in:
parent
67b8ce96c7
commit
5fd4d803be
|
|
@ -102,6 +102,7 @@
|
|||
(tool-bar-mode -1)
|
||||
(scroll-bar-mode -1)
|
||||
(set-fringe-mode '(2 . 0))
|
||||
(pixel-scroll-precision-mode)
|
||||
|
||||
;;; rhjr/packages
|
||||
(use-package magit
|
||||
|
|
@ -181,6 +182,13 @@
|
|||
(add-hook 'completion-at-point-functions #'cape-file)
|
||||
)
|
||||
|
||||
(use-package highlight-parentheses
|
||||
:ensure t
|
||||
:hook (prog-mode . highlight-parentheses-mode)
|
||||
:custom
|
||||
(highlight-parentheses-colors
|
||||
'("#8ffff2" "#8ffff2" "#8ffff2" "#8ffff2" "#8ffff2")))
|
||||
|
||||
(use-package emacs
|
||||
:custom
|
||||
;; Enable context menu. `vertico-multiform-mode' adds a menu in the minibuffer
|
||||
|
|
@ -243,13 +251,22 @@
|
|||
(setq-default show-trailing-whitespace t)
|
||||
(add-hook 'before-save-hook 'delete-trailing-whitespace)
|
||||
|
||||
;;rhjr/fix
|
||||
(setq minibuffer-prompt-properties ;; cursor in minibuffer-prompt
|
||||
'(read-only t cursor-intangible t face minibuffer-prompt))
|
||||
(add-hook 'minibuffer-setup-hook #'cursor-intangible-mode)
|
||||
|
||||
(custom-set-variables
|
||||
;; custom-set-variables was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
'(custom-safe-themes
|
||||
'("4a32b5f87b7ec307837e58c5a1bf8d532d5d090ae2e52f8e5348c1a48357c6c7"
|
||||
default))
|
||||
'(package-selected-packages
|
||||
'(cape consult corfu corfu-candidate-overlay magit orderless vertico)))
|
||||
'(cape consult corfu corfu-candidate-overlay highlight-parentheses
|
||||
magit orderless vertico)))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user