Advertisement
smeech

default.yml

Jan 24th, 2025 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.72 KB | None | 0 0
  1. # espanso configuration file
  2.  
  3. # yaml-language-server: $schema=https://raw.githubusercontent.com/espanso/espanso/dev/schemas/config.schema.json
  4.  
  5. # For a complete introduction, visit the official docs at: https://espanso.org/docs/
  6.  
  7. # You can use this file to define the global configuration options for espanso.
  8. # These are the parameters that will be used by default on every application,
  9. # but you can also override them on a per-application basis.
  10.  
  11. # To make customization easier, this file contains some of the commonly used
  12. # parameters. Feel free to uncomment and tune them to fit your needs!
  13.  
  14. # --- Toggle key
  15.  
  16. # Customize the key used to disable and enable espanso (when double tapped)
  17. # Available options: CTRL, SHIFT, ALT, CMD, OFF
  18. # You can also specify the key variant, such as LEFT_CTRL, RIGHT_SHIFT, etc...
  19. # toggle_key: ALT
  20. # You can also disable the toggle key completely with
  21. # toggle_key: OFF
  22.  
  23. # --- Injection Backend
  24.  
  25. # Espanso supports multiple ways of injecting text into applications. Each of
  26. # them has its quirks, therefore you may want to change it if you are having problems.
  27. # By default, espanso uses the "Auto" backend which should work well in most cases,
  28. # but you may want to try the "Clipboard" or "Inject" backend in case of issues.
  29. # backend: Clipboard
  30.  
  31. # --- Auto-restart
  32.  
  33. # Enable/disable the config auto-reload after a file change is detected.
  34. # auto_restart: false
  35.  
  36. # --- Clipboard threshold
  37.  
  38. # Because injecting long texts char-by-char is a slow operation, espanso automatically
  39. # uses the clipboard if the text is longer than 'clipboard_threshold' characters.
  40. # clipboard_threshold: 100
  41.  
  42. # For a list of all the available options, visit the official docs at: https://espanso.org/docs/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement