Skip to content

Commit

Permalink
feat(ultra-scroll): Use ultra-scroll to have smoothness during scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
Maverobot committed Jan 10, 2025
1 parent a7a5ec5 commit a89b20e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ This function should only modify configuration layer settings."
(copilot :location (recipe :fetcher github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
(lean4-mode :location (recipe :fetcher github :repo "leanprover/lean4-mode" :files ("*.el" "data")))
(term-cursor :location (recipe :fetcher github :repo "h0d/term-cursor.el" ))
(ultra-scroll :location (recipe :fetcher github :repo "jdtsmith/ultra-scroll"))
arduino-mode
beacon
cheat-sh
Expand Down
9 changes: 9 additions & 0 deletions spacemacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,15 @@ the formatting in a dominant parent directory of the assumed input file path.
'("k" "copy branch name" magit-add-current-branch-name-to-kill-ring)))
#+END_SRC
** Miscellaneous
*** ultra-scroll
#+BEGIN_SRC emacs-lisp :tangle user-config.el
(use-package ultra-scroll
:init
(setq scroll-conservatively 101 ; important!
scroll-margin 0)
:config
(ultra-scroll-mode 1))
#+END_SRC
*** No title bar
#+BEGIN_SRC emacs-lisp :tangle user-config.el
(add-to-list 'default-frame-alist '(undecorated-round . t))
Expand Down

0 comments on commit a89b20e

Please sign in to comment.