Update completions
This commit is contained in:
parent
1d1f4255b9
commit
a476a53d3a
2 changed files with 16 additions and 16 deletions
lib/nixos/home-manager/modules
|
@ -1,6 +1,3 @@
|
||||||
let
|
|
||||||
baseUrl = "https://www.oliverdavies.uk";
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
services.espanso = {
|
services.espanso = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -12,7 +9,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
matches = {
|
matches = {
|
||||||
base = import ./espanso/matches.nix { inherit baseUrl; };
|
base = import ./espanso/matches.nix;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +1,29 @@
|
||||||
{ baseUrl }:
|
let
|
||||||
|
websiteUrl = "https://www.oliverdavies.uk";
|
||||||
|
dailyUrl = "https://dailydrupaler.com";
|
||||||
|
podcastUrl = "https://beyondblockspodcast.com";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
matches = [
|
matches = [
|
||||||
{
|
{
|
||||||
trigger = ":archive";
|
trigger = ":archive";
|
||||||
replace = "${baseUrl}/archive";
|
replace = "${websiteUrl}/archive";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":atdc";
|
trigger = ":atdc";
|
||||||
replace = "${baseUrl}/atdc";
|
replace = "${websiteUrl}/atdc";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":call";
|
trigger = ":call";
|
||||||
replace = "${baseUrl}/call";
|
replace = "${websiteUrl}/call";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":coaching";
|
trigger = ":coaching";
|
||||||
replace = "${baseUrl}/team-coaching";
|
replace = "${websiteUrl}/team-coaching";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":daily";
|
trigger = ":daily";
|
||||||
replace = "https://dailydrupaler.com";
|
replace = "${dailyUrl}";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":dotfiles";
|
trigger = ":dotfiles";
|
||||||
|
@ -40,7 +43,7 @@
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":guest";
|
trigger = ":guest";
|
||||||
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.";
|
replace = "If you'd like to be a guest on ${podcastUrl} and talk about ..., I'd love to have you on the show.";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":lh";
|
trigger = ":lh";
|
||||||
|
@ -48,19 +51,19 @@
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":podcast";
|
trigger = ":podcast";
|
||||||
replace = "https://beyondblockspodcast.com";
|
replace = "${podcastUrl}";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":pricing";
|
trigger = ":pricing";
|
||||||
replace = "${baseUrl}/pricing";
|
replace = "${websiteUrl}/pricing";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":talks";
|
trigger = ":talks";
|
||||||
replace = "${baseUrl}/presentations";
|
replace = "${websiteUrl}/presentations";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":website";
|
trigger = ":website";
|
||||||
replace = "${baseUrl}";
|
replace = "${websiteUrl}";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
trigger = ":zet";
|
trigger = ":zet";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue