nixos/home-manager/software/emacs/emacs.d/lib/ui.el

14 lines
328 B
EmacsLisp
Raw Normal View History

2022-08-18 21:22:26 +02:00
;; smooth scrolling
(use-package smooth-scrolling
:ensure t
:config
(setq scroll-margin 1
scroll-conservatively 9999
scroll-step 1))
2022-08-20 17:17:31 +02:00
;; change the colours of parenthesis the further out they are
(use-package rainbow-delimiters
:ensure t
:config
(add-hook 'prog-mode-hook #'rainbow-delimiters-mode))