From 1dfef5132817f4738a36688afd560093a6fd82bc Mon Sep 17 00:00:00 2001 From: "dth@taiga.ai" Date: Wed, 13 Jul 2022 23:27:32 +0100 Subject: [PATCH] vimwiki: dth @ dth-MacBookAir --- .config/alacritty/alacritty.yml | 4 ++-- README.md | 15 ++++++++++++--- firefox-scrolling.md | 13 +++++++++++++ 3 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 firefox-scrolling.md diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index cbd1b31..cf480d4 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -153,8 +153,8 @@ schemes: # Apply the color scheme. # colors: *gruvbox_material_hard_dark # colors: *gruvbox_material_medium_dark -# colors: *gruvbox_material_soft_dark +colors: *gruvbox_material_soft_dark # colors: *gruvbox_material_hard_light # colors: *gruvbox_material_medium_light -colors: *gruvbox_material_soft_light +# colors: *gruvbox_material_soft_light diff --git a/README.md b/README.md index a167818..8964397 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,23 @@ # dotfiles This repo is an extension of [dannydannydanny/methodology](https://github.com/DannyDannyDanny/methodology/) -The central part of this repo is [ubuntu](ubuntu.md) +* [ubuntu](ubuntu.md) +* [firefox-scrolling](firefox-scrolling.md) ## Roadmap: * extend *makefile*: - * **low-level configs:** config zsh, config nvim, config tmux-local, config tmux-remote - * **machine level config:** config mac local machine, config ubuntu local machine, config ubuntu server + * **low-level configs:** + * config zsh + * config nvim + * config tmux-local + * config tmux-remote + * **machine level config:** + * config mac local machine + * config ubuntu local machine + * config ubuntu server + * [o] configure **tmux**: * [X] remote nested sessions * [X] change tmux:pane-switching bindings from arrow keys to vim bindings diff --git a/firefox-scrolling.md b/firefox-scrolling.md new file mode 100644 index 0000000..18de015 --- /dev/null +++ b/firefox-scrolling.md @@ -0,0 +1,13 @@ +Go to `about:config` and make changes: + +``` +gfx.webrender.all: true +general.smoothScroll.msdPhysics.enabled: true +general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS: 12 +general.smoothScroll.msdPhysics.motionBeginSpringConstant: 125 +general.smoothScroll.msdPhysics.regularSpringConstant: 100 +mousewheel.min_line_scroll_amount: 42 +mousewheel.default.delta_multiplier_y: 10 +``` + +> [source](https://www.reddit.com/r/firefox/comments/mq9g52/linux_firefox_performancemacos_like_mouse_wheel/)