Add :dotfiles to espanso

This commit is contained in:
Oliver Davies 2023-12-15 11:12:08 +00:00
parent c5846665aa
commit 7124abf983
2 changed files with 11 additions and 1 deletions

View file

@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), but adapt
Instead of grouping changes by tag, they are grouped by the date they are released. Instead of grouping changes by tag, they are grouped by the date they are released.
## 15th December 2023
### Added
* Add `:dotfiles` to espanso that links to my dotfiles repository on GitHub.
## 14th December 2023 ## 14th December 2023
### Added ### Added

View file

@ -1,7 +1,7 @@
let let
baseUrl = "https://www.oliverdavies.dev"; baseUrl = "https://www.oliverdavies.dev";
in in
{ {
services.espanso = { services.espanso = {
enable = true; enable = true;
@ -26,6 +26,10 @@ in
trigger = ":coaching"; trigger = ":coaching";
replace = "${baseUrl}/team-coaching"; replace = "${baseUrl}/team-coaching";
} }
{
trigger = ":dotfiles";
replace = "https://github.com/opdavies/dotfiles";
}
]; ];
}; };
}; };