馃 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 :)