File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ This function should only modify configuration layer settings."
172
172
(copilot :location (recipe :fetcher github :repo " zerolfx/copilot.el" :files (" *.el" " dist" )))
173
173
(lean4-mode :location (recipe :fetcher github :repo " leanprover/lean4-mode" :files (" *.el" " data" )))
174
174
(term-cursor :location (recipe :fetcher github :repo " h0d/term-cursor.el" ))
175
+ (ultra-scroll :location (recipe :fetcher github :repo " jdtsmith/ultra-scroll" ))
175
176
arduino-mode
176
177
beacon
177
178
cheat-sh
Original file line number Diff line number Diff line change @@ -369,6 +369,15 @@ the formatting in a dominant parent directory of the assumed input file path.
369
369
'("k" "copy branch name" magit-add-current-branch-name-to-kill-ring)))
370
370
#+END_SRC
371
371
** Miscellaneous
372
+ *** ultra-scroll
373
+ #+BEGIN_SRC emacs-lisp :tangle user-config.el
374
+ (use-package ultra-scroll
375
+ :init
376
+ (setq scroll-conservatively 101 ; important!
377
+ scroll-margin 0)
378
+ :config
379
+ (ultra-scroll-mode 1))
380
+ #+END_SRC
372
381
*** No title bar
373
382
#+BEGIN_SRC emacs-lisp :tangle user-config.el
374
383
(add-to-list 'default-frame-alist '(undecorated-round . t))
You can’t perform that action at this time.
0 commit comments