From f6d9e5d3739962431d3eb97db05650197da32207 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Tue, 14 Jul 2020 20:25:06 +0200 Subject: [PATCH] Add espanso configuration Signed-off-by: Severin Kaderli --- system/.config/espanso/default.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 system/.config/espanso/default.yml diff --git a/system/.config/espanso/default.yml b/system/.config/espanso/default.yml new file mode 100644 index 0000000..8c7411f --- /dev/null +++ b/system/.config/espanso/default.yml @@ -0,0 +1,21 @@ +# espanso configuration file + +# This is the default configuration file, change it as you like it +# You can refer to the official documentation: +# https://espanso.org/docs/ + +# Matches are the substitution rules, when you type the "trigger" string +# it gets replaced by the "replace" string. +matches: + # Simple text replacement + - trigger: ":mail" + replace: "severin@kaderli.dev" + + - trigger: ":date" + replace: "{{date}}" + vars: + - name: date + type: date + params: + format: "%F" +... \ No newline at end of file