Skip to content

Commit

Permalink
add better scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
ravachol-yang committed Apr 12, 2024
1 parent be99e9d commit 98e11a1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ to use the latest stable Emacs release like I do.
## Plugins
- Appearance
- Dashboard
- Good Scroll
- Project Management
- Projectile
- Programming
Expand Down
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
(require 'init-themes)
(require 'init-dashboard)
(require 'init-nerd-icons)
(require 'init-good-scroll)

;; project management
(require 'init-projectile)
Expand Down
13 changes: 13 additions & 0 deletions lisp/init-good-scroll.el
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 98e11a1

Please sign in to comment.