Added: highlight-parentheses package
This commit is contained in:
parent
67b8ce96c7
commit
5fd4d803be
|
|
@ -102,6 +102,7 @@
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
(set-fringe-mode '(2 . 0))
|
(set-fringe-mode '(2 . 0))
|
||||||
|
(pixel-scroll-precision-mode)
|
||||||
|
|
||||||
;;; rhjr/packages
|
;;; rhjr/packages
|
||||||
(use-package magit
|
(use-package magit
|
||||||
|
|
@ -179,7 +180,14 @@
|
||||||
(add-hook 'completion-at-point-functions #'cape-abbrev)
|
(add-hook 'completion-at-point-functions #'cape-abbrev)
|
||||||
(add-hook 'completion-at-point-functions #'cape-dabbrev)
|
(add-hook 'completion-at-point-functions #'cape-dabbrev)
|
||||||
(add-hook 'completion-at-point-functions #'cape-file)
|
(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
|
(use-package emacs
|
||||||
:custom
|
:custom
|
||||||
|
|
@ -243,13 +251,22 @@
|
||||||
(setq-default show-trailing-whitespace t)
|
(setq-default show-trailing-whitespace t)
|
||||||
(add-hook 'before-save-hook 'delete-trailing-whitespace)
|
(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
|
||||||
;; custom-set-variables was added by Custom.
|
;; custom-set-variables was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
|
'(custom-safe-themes
|
||||||
|
'("4a32b5f87b7ec307837e58c5a1bf8d532d5d090ae2e52f8e5348c1a48357c6c7"
|
||||||
|
default))
|
||||||
'(package-selected-packages
|
'(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
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user