dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

commit 5a900ce66e5de57ba0e50ee13b965484e8b264c9
parent 6a9de96c17101b8bb6fd249e0c8ace54d39f13d7
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Thu, 13 Jan 2022 02:14:48 -0800

Better scrolling

Diffstat:
M.config/emacs/config.org | 30+++++++++++++++++++++++++++---
1 file changed, 27 insertions(+), 3 deletions(-)

diff --git a/.config/emacs/config.org b/.config/emacs/config.org @@ -14,6 +14,15 @@ (add-to-list 'default-frame-alist '(alpha . (85 . 85))) #+END_SRC +** quelpa packages +#+begin_src emacs-lisp + +(quelpa + '(ox-thtml + :fetcher git + :url "https://github.com/juanjosegarciaripoll/org-thtml")) + +#+end_src ** font and theme #+BEGIN_SRC emacs-lisp @@ -91,12 +100,20 @@ ;; scroll one line at a time (less "jumpy" than defaults) (setq mouse-wheel-scroll-amount '(1 ((shift) . 1))) ;; one line at a time - (setq mouse-wheel-progressive-speed nil) ;; don't accelerate scrolling - (setq mouse-wheel-follow-mouse 't) ;; scroll window under mouse -(setq scroll-step 1) ;; keyboard scroll one line at a time +(use-package good-scroll + :ensure t + :init + (good-scroll-mode 1)) + + ; TODO smooth-scrolling mode has a bug where it annoyingly jumps when a virtual line exists +(use-package smooth-scrolling + :ensure t + :init + (setq smooth-scroll-margin 1) + (smooth-scrolling-mode 1)) ;; Column 80 fill line. (setq display-fill-column-indicator-column 80) @@ -568,6 +585,13 @@ :config (auto-revert-mode)) #+end_src +** glsl +#+begin_src emacs-lisp + +(use-package glsl-mode + :ensure t) + +#+end_src * Text-editor ** spellcheck #+BEGIN_SRC emacs-lisp