Hyprland-dotfiles/nvim/lua/modules/configs/editor/align.lua
2024-07-21 02:51:17 -04:00

12 lines
280 B
Lua

return function()
require("modules.utils").load_plugin("mini.align", {
-- Whether to disable showing non-error feedback
silent = false,
-- Module mappings. Use `''` (empty string) to disable one.
mappings = {
start = "gea",
start_with_preview = "geA",
},
})
end