🧋 a tiny plugin for smoother movement keybinds
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Lua 100.0%
1 1 0

Clone this repository

https://tangled.org/robinwobin.dev/smoothie.nvim https://tangled.org/did:plc:khzb5upklnupwpxllpbmrv5a/smoothie.nvim
git@tangled.org:robinwobin.dev/smoothie.nvim git@tangled.org:did:plc:khzb5upklnupwpxllpbmrv5a/smoothie.nvim

For self-hosted knots, clone URLs may differ based on your setup.

Download tar.gz
README.md

🧋 smoothie.nvim#

a tiny plugin for smoother movement keybinds

requirements#

  • Neovim >= 0.12

installation#

install with vim.pack:

vim.pack.add({ { src = "https://codeberg.org/comfysage/smoothie.nvim" } })

usage#

smoothie currently on supports smoothing for the ctrl-d and ctrl-u keybinds.

vim.keymap.set("n", "<c-d>", "<plug>(smoothie-ctrl-d)")
vim.keymap.set("n", "<c-u>", "<plug>(smoothie-ctrl-u)")

you can configure the smoothing settings:

vim.g.smoothie_config = {
  interval = 5,
  maxtime = 100,
}

this plugin is inspired by vim-smoothie :)