mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 01:55:13 -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 = {
|
services.espanso = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.espanso-wayland;
|
package = if hostname == mars.name then pkgs.espanso-wayland else pkgs.espanso;
|
||||||
matches = {
|
matches = {
|
||||||
base = {
|
base = {
|
||||||
matches = [
|
matches = [
|
||||||
|
@ -34,6 +43,10 @@
|
||||||
trigger = ":exist";
|
trigger = ":exist";
|
||||||
replace = "∃";
|
replace = "∃";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
trigger = ":em";
|
||||||
|
replace = "—";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
global_vars = {
|
global_vars = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue