mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
feat: added the em dash
This commit is contained in:
parent
bd524a279c
commit
c287906c9b
1 changed files with 15 additions and 2 deletions
|
@ -1,8 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
pkgs,
|
||||
flake,
|
||||
osConfig,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (flake.config.machines.devices) mars;
|
||||
hostname = osConfig.networking.hostName;
|
||||
in
|
||||
{
|
||||
services.espanso = {
|
||||
enable = true;
|
||||
package = pkgs.espanso-wayland;
|
||||
package = if hostname == mars.name then pkgs.espanso-wayland else pkgs.espanso;
|
||||
matches = {
|
||||
base = {
|
||||
matches = [
|
||||
|
@ -34,6 +43,10 @@
|
|||
trigger = ":exist";
|
||||
replace = "∃";
|
||||
}
|
||||
{
|
||||
trigger = ":em";
|
||||
replace = "—";
|
||||
}
|
||||
];
|
||||
};
|
||||
global_vars = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue