diff --git a/README.md b/README.md index 7fbb200..92dcab0 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ to use the latest stable Emacs release like I do. ## Plugins - Appearance - Dashboard + - Good Scroll - Project Management - Projectile - Programming diff --git a/init.el b/init.el index c1eef2f..9c13fe5 100644 --- a/init.el +++ b/init.el @@ -31,6 +31,7 @@ (require 'init-themes) (require 'init-dashboard) (require 'init-nerd-icons) +(require 'init-good-scroll) ;; project management (require 'init-projectile) diff --git a/lisp/init-good-scroll.el b/lisp/init-good-scroll.el new file mode 100644 index 0000000..7867bc1 --- /dev/null +++ b/lisp/init-good-scroll.el @@ -0,0 +1,13 @@ +;;; init-good-scroll.el --- Smooth scrolling -*- lexical-binding: t -*- +;;; Commentary: +;;; Code: + +(use-package good-scroll + :ensure t + :config + (good-scroll-mode 1) + (global-set-key [next] #'good-scroll-up-full-screen) + (global-set-key [prior] #'good-scroll-down-full-screen)) + +(provide 'init-good-scroll) +;;; init-good-scroll.el ends here