mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 05:14:41 -05:00
feat: cleaned up espanso
This commit is contained in:
parent
0ddf9cd1ce
commit
3d6ee99ecb
9 changed files with 91 additions and 142 deletions
6
modules/home/gui/apps/tools/espanso/config/academic.nix
Executable file
6
modules/home/gui/apps/tools/espanso/config/academic.nix
Executable file
|
@ -0,0 +1,6 @@
|
|||
{ matchHelper, ... }:
|
||||
[
|
||||
(matchHelper ":dag1" "†")
|
||||
(matchHelper ":dag2" "‡")
|
||||
(matchHelper ":glp" "GLP-1RA")
|
||||
]
|
7
modules/home/gui/apps/tools/espanso/config/base.nix
Executable file
7
modules/home/gui/apps/tools/espanso/config/base.nix
Executable file
|
@ -0,0 +1,7 @@
|
|||
{ matchHelper, ... }:
|
||||
[
|
||||
(matchHelper ":up" "↑")
|
||||
(matchHelper ":down" "↓")
|
||||
(matchHelper ":left" "←")
|
||||
(matchHelper ":right" "→")
|
||||
]
|
6
modules/home/gui/apps/tools/espanso/config/characters.nix
Executable file
6
modules/home/gui/apps/tools/espanso/config/characters.nix
Executable file
|
@ -0,0 +1,6 @@
|
|||
{ matchHelper, ... }:
|
||||
[
|
||||
(matchHelper ":delta" "Δ")
|
||||
(matchHelper ":emdash" "—")
|
||||
(matchHelper ":degree" "°")
|
||||
]
|
8
modules/home/gui/apps/tools/espanso/config/debate.nix
Executable file
8
modules/home/gui/apps/tools/espanso/config/debate.nix
Executable file
|
@ -0,0 +1,8 @@
|
|||
{ matchHelper, ... }:
|
||||
[
|
||||
(matchHelper ":ntt" ''
|
||||
World A) Animals farmed for food.
|
||||
World B) Humans farmed for food.
|
||||
|
||||
All else equal, what is true of world A that is untrue of world B, that if made true of world B, would make world B permissible?'')
|
||||
]
|
9
modules/home/gui/apps/tools/espanso/config/email.nix
Executable file
9
modules/home/gui/apps/tools/espanso/config/email.nix
Executable file
|
@ -0,0 +1,9 @@
|
|||
{ flake, matchHelper, ... }:
|
||||
let
|
||||
inherit (flake.config.people) user0;
|
||||
inherit (flake.config.people.users.${user0}) email;
|
||||
in
|
||||
[
|
||||
(matchHelper ":mail0" email.address0)
|
||||
(matchHelper ":mail1" email.address2)
|
||||
]
|
11
modules/home/gui/apps/tools/espanso/config/logic.nix
Executable file
11
modules/home/gui/apps/tools/espanso/config/logic.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{ matchHelper, ... }:
|
||||
[
|
||||
(matchHelper ":neg" "¬")
|
||||
(matchHelper ":conj" "∧")
|
||||
(matchHelper ":disj" "∨")
|
||||
(matchHelper ":imp" "→")
|
||||
(matchHelper ":bicon" "↔")
|
||||
(matchHelper ":forall" "∀")
|
||||
(matchHelper ":exist" "∃")
|
||||
(matchHelper ":therefore" "∴")
|
||||
]
|
13
modules/home/gui/apps/tools/espanso/config/superscript.nix
Executable file
13
modules/home/gui/apps/tools/espanso/config/superscript.nix
Executable file
|
@ -0,0 +1,13 @@
|
|||
{ matchHelper, ... }:
|
||||
[
|
||||
(matchHelper ":ss1" "¹")
|
||||
(matchHelper ":ss2" "²")
|
||||
(matchHelper ":ss3" "³")
|
||||
(matchHelper ":ss4" "⁴")
|
||||
(matchHelper ":ss5" "⁵")
|
||||
(matchHelper ":ss6" "⁶")
|
||||
(matchHelper ":ss7" "⁷")
|
||||
(matchHelper ":ss8" "⁸")
|
||||
(matchHelper ":ss9" "⁹")
|
||||
(matchHelper ":ss0" "⁰")
|
||||
]
|
10
modules/home/gui/apps/tools/espanso/config/url.nix
Executable file
10
modules/home/gui/apps/tools/espanso/config/url.nix
Executable file
|
@ -0,0 +1,10 @@
|
|||
{ flake, matchHelper, ... }:
|
||||
let
|
||||
inherit (flake.config.services.instances) forgejo mastodon web;
|
||||
in
|
||||
[
|
||||
(matchHelper ":dotfiles" "https://gitlab.com/upRootNutrition/dotfiles")
|
||||
(matchHelper ":website" "https://${web.domains.url3}")
|
||||
(matchHelper ":forgejo" "https://${forgejo.subdomain}.${web.domains.url3}")
|
||||
(matchHelper ":mastodon" "https://${mastodon.subdomain}.${web.domains.url3}")
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue