input.lua 467 B

123456789101112131415161718192021222324
  1. hl.config({
  2. input = {
  3. kb_layout = "no",
  4. kb_variant = "",
  5. kb_model = "",
  6. kb_options = "compose:rctrl",
  7. kb_rules = "",
  8. follow_mouse = 1,
  9. sensitivity = 0, -- -1.0 - 1.0, 0 means no modification.
  10. touchpad = {
  11. natural_scroll = false,
  12. clickfinger_behavior = true,
  13. },
  14. },
  15. })
  16. hl.gesture({
  17. fingers = 3,
  18. direction = "horizontal",
  19. action = "workspace"
  20. })