dotfiles/lib/nixos/home-manager/modules/espanso/matches.nix

75 lines
1.4 KiB
Nix
Raw Normal View History

{ baseUrl }:
{
matches = [
{
trigger = ":archive";
replace = "${baseUrl}/archive";
}
{
trigger = ":atdc";
replace = "${baseUrl}/atdc";
}
{
trigger = ":call";
replace = "${baseUrl}/call";
}
{
trigger = ":coaching";
replace = "${baseUrl}/team-coaching";
}
{
trigger = ":daily";
2024-09-10 00:41:50 +00:00
replace = "https://dailydrupaler.com";
}
{
trigger = ":dotfiles";
replace = "https://github.com/opdavies/dotfiles.nix";
}
{
trigger = ":dc";
replace = "Drupal Commerce";
}
{
trigger = ":dr";
replace = "Drupal";
}
{
trigger = ":gt";
replace = "Great, thanks!";
}
{
trigger = ":guest";
2024-09-10 00:41:50 +00:00
replace = "If you'd like to be a guest on https://beyondblockspodcast.com and talk about ..., I'd love to have you on the show.";
}
{
trigger = ":lh";
replace = "http://localhost";
}
{
trigger = ":podcast";
2024-09-10 00:41:50 +00:00
replace = "https://beyondblockspodcast.com";
}
{
trigger = ":pricing";
replace = "${baseUrl}/pricing";
}
{
trigger = ":talks";
2024-09-10 00:41:50 +00:00
replace = "${baseUrl}/presentations";
}
{
trigger = ":website";
replace = "${baseUrl}";
}
{
trigger = ":zet";
replace = "https://zet.oliverdavies.uk";
}
{
trigger = ":zoom";
replace = "https://savvycal.com/opdavies/zoom";
}
];
}